Browse Source

fixup: fix nits

0.15
John Newbery 7 years ago
parent
commit
53f6775fe1
  1. 1
      test/functional/blockchain.py
  2. 2
      test/functional/fundrawtransaction.py
  3. 3
      test/functional/net.py

1
test/functional/blockchain.py

@ -24,7 +24,6 @@ from test_framework.util import ( @@ -24,7 +24,6 @@ from test_framework.util import (
assert_raises_jsonrpc,
assert_is_hex_string,
assert_is_hash_string,
connect_nodes_bi,
)

2
test/functional/fundrawtransaction.py

@ -448,10 +448,10 @@ class RawTransactionsTest(BitcoinTestFramework): @@ -448,10 +448,10 @@ class RawTransactionsTest(BitcoinTestFramework):
############################################################
# locked wallet test
self.nodes[1].encryptwallet("test")
self.stop_node(0)
self.stop_node(2)
self.stop_node(3)
self.nodes[1].encryptwallet("test")
self.nodes.pop(1)
self.nodes = self.start_nodes(self.num_nodes, self.options.tmpdir)

3
test/functional/net.py

@ -14,7 +14,8 @@ from test_framework.util import ( @@ -14,7 +14,8 @@ from test_framework.util import (
assert_equal,
assert_raises_jsonrpc,
connect_nodes_bi,
p2p_port)
p2p_port,
)
class NetTest(BitcoinTestFramework):

Loading…
Cancel
Save