diff options
author | MarcoFalke <falke.marco@gmail.com> | 2015-12-02 18:12:23 +0100 |
---|---|---|
committer | MarcoFalke <falke.marco@gmail.com> | 2016-01-13 20:31:03 +0100 |
commit | 7777994846cdb9b9cf69e391a33eeed30393bbcf (patch) | |
tree | 371953417d82780ca58a8cd7c8fe96e4c71fa216 /qa/rpc-tests/proxy_test.py | |
parent | 17ef279304a94ec01a8525189b80c163d931b1cf (diff) |
[qa] Fix pyton syntax in rpc tests
Diffstat (limited to 'qa/rpc-tests/proxy_test.py')
-rwxr-xr-x | qa/rpc-tests/proxy_test.py | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/qa/rpc-tests/proxy_test.py b/qa/rpc-tests/proxy_test.py index 3623c16162..7f77e664d2 100755 --- a/qa/rpc-tests/proxy_test.py +++ b/qa/rpc-tests/proxy_test.py @@ -3,9 +3,6 @@ # Distributed under the MIT software license, see the accompanying # file COPYING or http://www.opensource.org/licenses/mit-license.php. import socket -import traceback, sys -from binascii import hexlify -import time, os from test_framework.socks5 import Socks5Configuration, Socks5Command, Socks5Server, AddressType from test_framework.test_framework import BitcoinTestFramework @@ -34,7 +31,8 @@ addnode connect to onion addnode connect to generic DNS name ''' -class ProxyTest(BitcoinTestFramework): + +class ProxyTest(BitcoinTestFramework): def __init__(self): # Create two proxies on different ports # ... one unauthenticated |