Skip to content

Commit 75171f0

Browse files
author
MarcoFalke
committed
Merge #10137: Remove unused import. Remove accidental trailing semicolons.
73b3721 Remove accidental trailing semicolons (practicalswift) b8d9a86 Remove unused import (practicalswift) Tree-SHA512: 36ac38952f8a10f36d2300519c583ef77703cff761be97470be97cfda2fec9d5b7ac604e454f174cc2601160e5cef3f227021ab5d3a6febc97fcb486d78754d3
2 parents 3c5e6c9 + 73b3721 commit 75171f0

File tree

3 files changed

+3
-5
lines changed

3 files changed

+3
-5
lines changed

test/functional/bip9-softforks.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@
1616
test that enforcement has triggered
1717
"""
1818

19-
from test_framework.blockstore import BlockStore
2019
from test_framework.test_framework import ComparisonTestFramework
2120
from test_framework.util import *
2221
from test_framework.mininode import CTransaction, NetworkThread

test/functional/p2p-versionbits-warning.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212
from test_framework.test_framework import BitcoinTestFramework
1313
from test_framework.util import *
1414
import re
15-
import time
1615
from test_framework.blocktools import create_block, create_coinbase
1716

1817
VB_PERIOD = 144 # versionbits period length for regtest

test/functional/wallet-hd.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ def run_test (self):
3939

4040
# create an internal key
4141
change_addr = self.nodes[1].getrawchangeaddress()
42-
change_addrV= self.nodes[1].validateaddress(change_addr);
42+
change_addrV= self.nodes[1].validateaddress(change_addr)
4343
assert_equal(change_addrV["hdkeypath"], "m/0'/1'/0'") #first internal child key
4444

4545
# Import a non-HD private key in the HD wallet
@@ -67,7 +67,7 @@ def run_test (self):
6767

6868
# create an internal key (again)
6969
change_addr = self.nodes[1].getrawchangeaddress()
70-
change_addrV= self.nodes[1].validateaddress(change_addr);
70+
change_addrV= self.nodes[1].validateaddress(change_addr)
7171
assert_equal(change_addrV["hdkeypath"], "m/0'/1'/1'") #second internal child key
7272

7373
self.sync_all()
@@ -97,7 +97,7 @@ def run_test (self):
9797

9898
# send a tx and make sure its using the internal chain for the changeoutput
9999
txid = self.nodes[1].sendtoaddress(self.nodes[0].getnewaddress(), 1)
100-
outs = self.nodes[1].decoderawtransaction(self.nodes[1].gettransaction(txid)['hex'])['vout'];
100+
outs = self.nodes[1].decoderawtransaction(self.nodes[1].gettransaction(txid)['hex'])['vout']
101101
keypath = ""
102102
for out in outs:
103103
if out['value'] != 1:

0 commit comments

Comments
 (0)