From fad25153f5c8e88f72cf666b16b0b0dbdc45d3b1 Mon Sep 17 00:00:00 2001 From: MarcoFalke Date: Tue, 16 Feb 2021 16:39:09 +0100 Subject: [PATCH] test: Remove unused bug workaround --- test/functional/wallet_txn_clone.py | 1 - test/functional/wallet_txn_doublespend.py | 1 - 2 files changed, 2 deletions(-) diff --git a/test/functional/wallet_txn_clone.py b/test/functional/wallet_txn_clone.py index a6ab48c66bd..6fc1d13c53a 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 3f3feb74ce0..0cb7328948c 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()