diff options
author | Pieter Wuille <pieter.wuille@gmail.com> | 2015-11-26 18:42:07 +0100 |
---|---|---|
committer | Pieter Wuille <pieter.wuille@gmail.com> | 2015-11-29 13:24:02 +0100 |
commit | 9ac63d6d3056600c1b784da0e6b98f679fa98b6e (patch) | |
tree | 8f0dc33e56a2e7214cf3f3ccd84ebcba45c89103 /qa/rpc-tests/txn_clone.py | |
parent | 5d5ef3a4cf8e32cdf584811eb5415278f4ba9628 (diff) |
Keep track of explicit wallet conflicts instead of using mempool
Diffstat (limited to 'qa/rpc-tests/txn_clone.py')
-rwxr-xr-x | qa/rpc-tests/txn_clone.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qa/rpc-tests/txn_clone.py b/qa/rpc-tests/txn_clone.py index e8ced0e5bb..b1f603a192 100755 --- a/qa/rpc-tests/txn_clone.py +++ b/qa/rpc-tests/txn_clone.py @@ -136,7 +136,7 @@ class TxnMallTest(BitcoinTestFramework): tx2 = self.nodes[0].gettransaction(txid2) # Verify expected confirmations - assert_equal(tx1["confirmations"], -1) + assert_equal(tx1["confirmations"], -2) assert_equal(tx1_clone["confirmations"], 2) assert_equal(tx2["confirmations"], 1) |