diff options
| author | Russell Yanofsky <[email protected]> | 2017-06-01 15:35:44 -0400 |
|---|---|---|
| committer | Russell Yanofsky <[email protected]> | 2017-06-01 15:35:44 -0400 |
| commit | 8906a9a0d299c9d10c1d40fbec9756625f32f048 (patch) | |
| tree | 4e572c9202f477b7115901c4b8706ef906408631 /src | |
| parent | Merge #10475: [RPC] getmempoolinfo mempoolminfee is a BTC/KB feerate (diff) | |
| download | discoin-8906a9a0d299c9d10c1d40fbec9756625f32f048.tar.xz discoin-8906a9a0d299c9d10c1d40fbec9756625f32f048.zip | |
Fix bumpfee test after #10449
Failure reported by Jorge Timón <[email protected]>
https://github.com/bitcoin/bitcoin/pull/10449#issuecomment-305556569
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(); |