From 7e3874aa4b8844a04b51e02b0729ae9b57970458 Mon Sep 17 00:00:00 2001 From: MarcoFalke Date: Fri, 29 Jun 2018 02:05:29 +1400 Subject: [PATCH] fix wallet.py after 13160 Signed-off-by: pasta --- test/functional/wallet.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/functional/wallet.py b/test/functional/wallet.py index 2967220421..b4246d5b36 100755 --- a/test/functional/wallet.py +++ b/test/functional/wallet.py @@ -119,7 +119,7 @@ class WalletTest(BitcoinTestFramework): self.nodes[1].lockunspent(False, [unspent_0]) tx = self.nodes[1].createrawtransaction([unspent_0], { self.nodes[1].getnewaddress() : 1 }) tx = self.nodes[1].fundrawtransaction(tx)['hex'] - tx = self.nodes[1].signrawtransactionwithwallet(tx)["hex"] + tx = self.nodes[1].signrawtransaction(tx)["hex"] self.nodes[1].sendrawtransaction(tx) assert_equal(len(self.nodes[1].listlockunspent()), 0)