diff options
| author | MarcoFalke <[email protected]> | 2016-08-19 22:41:09 +0200 |
|---|---|---|
| committer | MarcoFalke <[email protected]> | 2016-08-19 22:43:05 +0200 |
| commit | faaec1377c6975a7c427bac958b67a0aba9e1694 (patch) | |
| tree | c6fca51996b2e55f0810ac7974c7eb66f57e5aec /qa/rpc-tests/rpcbind_test.py | |
| parent | Merge #8517: [Qt] show wallet HD state in statusbar (diff) | |
| download | discoin-faaec1377c6975a7c427bac958b67a0aba9e1694.tar.xz discoin-faaec1377c6975a7c427bac958b67a0aba9e1694.zip | |
[qa] Remove unused code
Diffstat (limited to 'qa/rpc-tests/rpcbind_test.py')
| -rwxr-xr-x | qa/rpc-tests/rpcbind_test.py | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/qa/rpc-tests/rpcbind_test.py b/qa/rpc-tests/rpcbind_test.py index bf1cc8712..3ac32140b 100755 --- a/qa/rpc-tests/rpcbind_test.py +++ b/qa/rpc-tests/rpcbind_test.py @@ -5,13 +5,11 @@ # Test for -rpcbind, as well as -rpcallowip and -rpcconnect -import tempfile -import traceback - from test_framework.test_framework import BitcoinTestFramework from test_framework.util import * from test_framework.netutil import * + class RPCBindTest(BitcoinTestFramework): def __init__(self): @@ -109,4 +107,4 @@ class RPCBindTest(BitcoinTestFramework): pass if __name__ == '__main__': - RPCBindTest ().main () + RPCBindTest().main() |