aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoão Barbosa <joao.paulo.barbosa@gmail.com>2018-05-25 14:28:37 +0100
committerJoão Barbosa <joao.paulo.barbosa@gmail.com>2018-05-25 14:28:37 +0100
commitfd9b3a71824e33728f267e6f288b6224ad1047e1 (patch)
tree6e75689c5e37215ac81d83e0432aefe6fcaeddca
parent54c3bb4cf805ccee91efb9f8cdadea87e0797989 (diff)
downloadbitcoin-fd9b3a71824e33728f267e6f288b6224ad1047e1.tar.xz
test: Output should be unlocked when spent
-rwxr-xr-xtest/functional/wallet_basic.py9
1 files changed, 9 insertions, 0 deletions
diff --git a/test/functional/wallet_basic.py b/test/functional/wallet_basic.py
index 0e095a6132..0673b6d55e 100755
--- a/test/functional/wallet_basic.py
+++ b/test/functional/wallet_basic.py
@@ -130,6 +130,15 @@ class WalletTest(BitcoinTestFramework):
self.nodes[2].lockunspent, False,
[{"txid": unspent_0["txid"], "vout": 999}])
+ # An output should be unlocked when spent
+ unspent_0 = self.nodes[1].listunspent()[0]
+ 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"]
+ self.nodes[1].sendrawtransaction(tx)
+ assert_equal(len(self.nodes[1].listlockunspent()), 0)
+
# Have node1 generate 100 blocks (so node0 can recover the fee)
self.nodes[1].generate(100)
self.sync_all([self.nodes[0:3]])