Remove accidental trailing semicolons
This commit is contained in:
parent
b8d9a86dc3
commit
73b37219d4
1 changed files with 3 additions and 3 deletions
|
@ -44,7 +44,7 @@ class WalletHDTest(BitcoinTestFramework):
|
|||
|
||||
# create an internal key
|
||||
change_addr = self.nodes[1].getrawchangeaddress()
|
||||
change_addrV= self.nodes[1].validateaddress(change_addr);
|
||||
change_addrV= self.nodes[1].validateaddress(change_addr)
|
||||
assert_equal(change_addrV["hdkeypath"], "m/0'/1'/0'") #first internal child key
|
||||
|
||||
# Import a non-HD private key in the HD wallet
|
||||
|
@ -72,7 +72,7 @@ class WalletHDTest(BitcoinTestFramework):
|
|||
|
||||
# create an internal key (again)
|
||||
change_addr = self.nodes[1].getrawchangeaddress()
|
||||
change_addrV= self.nodes[1].validateaddress(change_addr);
|
||||
change_addrV= self.nodes[1].validateaddress(change_addr)
|
||||
assert_equal(change_addrV["hdkeypath"], "m/0'/1'/1'") #second internal child key
|
||||
|
||||
self.sync_all()
|
||||
|
@ -102,7 +102,7 @@ class WalletHDTest(BitcoinTestFramework):
|
|||
|
||||
# send a tx and make sure its using the internal chain for the changeoutput
|
||||
txid = self.nodes[1].sendtoaddress(self.nodes[0].getnewaddress(), 1)
|
||||
outs = self.nodes[1].decoderawtransaction(self.nodes[1].gettransaction(txid)['hex'])['vout'];
|
||||
outs = self.nodes[1].decoderawtransaction(self.nodes[1].gettransaction(txid)['hex'])['vout']
|
||||
keypath = ""
|
||||
for out in outs:
|
||||
if out['value'] != 1:
|
||||
|
|
Loading…
Reference in a new issue