We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5b15870 commit de6400dCopy full SHA for de6400d
src/wallet/rpcwallet.cpp
@@ -2834,7 +2834,7 @@ UniValue bumpfee(const JSONRPCRequest& request)
2834
2835
// If the output would become dust, discard it (converting the dust to fee)
2836
poutput->nValue -= nDelta;
2837
- if (poutput->nValue <= poutput->GetDustThreshold(::minRelayTxFee)) {
+ if (poutput->nValue <= poutput->GetDustThreshold(::dustRelayFee)) {
2838
LogPrint("rpc", "Bumping fee and discarding dust output\n");
2839
nNewFee += poutput->nValue;
2840
tx.vout.erase(tx.vout.begin() + nOutput);
0 commit comments