diff options
author | Sebastian Falbesoner <sebastian.falbesoner@gmail.com> | 2020-08-03 01:10:56 +0200 |
---|---|---|
committer | Sebastian Falbesoner <sebastian.falbesoner@gmail.com> | 2020-08-06 18:39:33 +0200 |
commit | dac7a111bdd3b0233d94cf68dae7a8bfc6ac9c64 (patch) | |
tree | c3ae6f8e52eade778dff7c9ad679a919db22778b /test/functional/wallet_dump.py | |
parent | 82127d27c9001eee3eb28df67ce2e6eace620423 (diff) |
refactor: test: use _ variable for unused loop counters
substitutes "for x in range(N):" by "for _ in range(N):"
indicates to the reader that a block is just repeated N times, and
that the loop counter is not used in the body
Diffstat (limited to 'test/functional/wallet_dump.py')
-rwxr-xr-x | test/functional/wallet_dump.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/functional/wallet_dump.py b/test/functional/wallet_dump.py index 6bfb468823..06f01ef191 100755 --- a/test/functional/wallet_dump.py +++ b/test/functional/wallet_dump.py @@ -116,7 +116,7 @@ class WalletDumpTest(BitcoinTestFramework): test_addr_count = 10 addrs = [] for address_type in ['legacy', 'p2sh-segwit', 'bech32']: - for i in range(0, test_addr_count): + for _ in range(test_addr_count): addr = self.nodes[0].getnewaddress(address_type=address_type) vaddr = self.nodes[0].getaddressinfo(addr) # required to get hd keypath addrs.append(vaddr) |