diff options
| author | Pieter Wuille <[email protected]> | 2017-06-01 16:21:11 -0700 |
|---|---|---|
| committer | Pieter Wuille <[email protected]> | 2017-06-01 16:28:37 -0700 |
| commit | 7cc2c670e3d7cf26454ac8547a94ec2c8ca90b34 (patch) | |
| tree | c1ae7f20dfb41c0050d2571e3af3182e14aeddac /src | |
| parent | Merge #10195: Switch chainstate db and cache to per-txout model (diff) | |
| parent | Fix bumpfee test after #10449 (diff) | |
| download | discoin-7cc2c670e3d7cf26454ac8547a94ec2c8ca90b34.tar.xz discoin-7cc2c670e3d7cf26454ac8547a94ec2c8ca90b34.zip | |
Merge #10506: Fix bumpfee test after #10449
8906a9a0d Fix bumpfee test after #10449 (Russell Yanofsky)
Tree-SHA512: 0838c7696499baf0fb5ee6edf0b081752d6c37578360a7f24a7e9c700598cbc14ff95826f2f5124cca805d2609470a052bc7309211874b13be7ac1ff9e911a34
Diffstat (limited to 'src')
| -rw-r--r-- | src/qt/test/wallettests.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qt/test/wallettests.cpp b/src/qt/test/wallettests.cpp index 0e12a9d53..ff1eb59f1 100644 --- a/src/qt/test/wallettests.cpp +++ b/src/qt/test/wallettests.cpp @@ -182,7 +182,7 @@ void TestSendCoins() BumpFee(transactionView, txid1, true /* expect disabled */, "not BIP 125 replaceable" /* expected error */, false /* cancel */); BumpFee(transactionView, txid2, false /* expect disabled */, {} /* expected error */, true /* cancel */); BumpFee(transactionView, txid2, false /* expect disabled */, {} /* expected error */, false /* cancel */); - BumpFee(transactionView, txid2, false /* expect disabled */, "already bumped" /* expected error */, false /* cancel */); + BumpFee(transactionView, txid2, true /* expect disabled */, "already bumped" /* expected error */, false /* cancel */); bitdb.Flush(true); bitdb.Reset(); |