diff options
| author | João Barbosa <[email protected]> | 2018-05-25 14:28:37 +0100 |
|---|---|---|
| committer | João Barbosa <[email protected]> | 2018-05-25 14:28:37 +0100 |
| commit | fd9b3a71824e33728f267e6f288b6224ad1047e1 (patch) | |
| tree | 6e75689c5e37215ac81d83e0432aefe6fcaeddca /test/functional/wallet_basic.py | |
| parent | wallet: Unlock spent outputs (diff) | |
| download | discoin-fd9b3a71824e33728f267e6f288b6224ad1047e1.tar.xz discoin-fd9b3a71824e33728f267e6f288b6224ad1047e1.zip | |
test: Output should be unlocked when spent
Diffstat (limited to 'test/functional/wallet_basic.py')
| -rwxr-xr-x | test/functional/wallet_basic.py | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/test/functional/wallet_basic.py b/test/functional/wallet_basic.py index 0e095a613..0673b6d55 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]]) |