File tree Expand file tree Collapse file tree 4 files changed +3
-9
lines changed Expand file tree Collapse file tree 4 files changed +3
-9
lines changed Original file line number Diff line number Diff line change 77
77
#Set env vars
78
78
if "BITCOIND" not in os .environ :
79
79
os .environ ["BITCOIND" ] = BUILDDIR + '/src/bitcoind' + EXEEXT
80
- if "BITCOINCLI" not in os .environ :
81
- os .environ ["BITCOINCLI" ] = BUILDDIR + '/src/bitcoin-cli' + EXEEXT
82
80
83
81
if EXEEXT == ".exe" and "-win" not in opts :
84
82
# https://github.com/bitcoin/bitcoin/commit/d52802551752140cf41f0d9a225a43e84404d3e9
Original file line number Diff line number Diff line change 5
5
6
6
from test_framework .test_framework import BitcoinTestFramework
7
7
from test_framework .util import *
8
- import decimal
8
+
9
9
10
10
class ImportPrunedFundsTest (BitcoinTestFramework ):
11
11
Original file line number Diff line number Diff line change 5
5
6
6
# Test for -rpcbind, as well as -rpcallowip and -rpcconnect
7
7
8
- import tempfile
9
- import traceback
10
-
11
8
from test_framework .test_framework import BitcoinTestFramework
12
9
from test_framework .util import *
13
10
from test_framework .netutil import *
14
11
12
+
15
13
class RPCBindTest (BitcoinTestFramework ):
16
14
17
15
def __init__ (self ):
@@ -109,4 +107,4 @@ def run_test(self):
109
107
pass
110
108
111
109
if __name__ == '__main__' :
112
- RPCBindTest ().main ()
110
+ RPCBindTest ().main ()
Original file line number Diff line number Diff line change 10
10
from test_framework .test_framework import BitcoinTestFramework
11
11
from test_framework .util import *
12
12
from test_framework .mininode import sha256 , ripemd160
13
- import os
14
- import shutil
15
13
16
14
NODE_0 = 0
17
15
NODE_1 = 1
You can’t perform that action at this time.
0 commit comments