diff options
author | MarcoFalke <falke.marco@gmail.com> | 2021-02-16 16:39:09 +0100 |
---|---|---|
committer | MarcoFalke <falke.marco@gmail.com> | 2021-02-16 16:28:40 +0100 |
commit | fad25153f5c8e88f72cf666b16b0b0dbdc45d3b1 (patch) | |
tree | 2719bb7b799477a3f85ee387b7ec4ee9a21cdb8c | |
parent | faabce7d07c5776e4116b1a7ad1f6c408a4a4e46 (diff) |
test: Remove unused bug workaround
-rwxr-xr-x | test/functional/wallet_txn_clone.py | 1 | ||||
-rwxr-xr-x | test/functional/wallet_txn_doublespend.py | 1 |
2 files changed, 0 insertions, 2 deletions
diff --git a/test/functional/wallet_txn_clone.py b/test/functional/wallet_txn_clone.py index a6ab48c66b..6fc1d13c53 100755 --- a/test/functional/wallet_txn_clone.py +++ b/test/functional/wallet_txn_clone.py @@ -41,7 +41,6 @@ class TxnMallTest(BitcoinTestFramework): starting_balance = 1250 for i in range(3): assert_equal(self.nodes[i].getbalance(), starting_balance) - self.nodes[i].getnewaddress() # bug workaround, coins generated assigned to first getnewaddress! self.nodes[0].settxfee(.001) diff --git a/test/functional/wallet_txn_doublespend.py b/test/functional/wallet_txn_doublespend.py index 3f3feb74ce..0cb7328948 100755 --- a/test/functional/wallet_txn_doublespend.py +++ b/test/functional/wallet_txn_doublespend.py @@ -42,7 +42,6 @@ class TxnMallTest(BitcoinTestFramework): for i in range(3): assert_equal(self.nodes[i].getbalance(), starting_balance) - self.nodes[i].getnewaddress("") # bug workaround, coins generated assigned to first getnewaddress! # Assign coins to foo and bar addresses: node0_address_foo = self.nodes[0].getnewaddress() |