aboutsummaryrefslogtreecommitdiff
path: root/src/wallet
diff options
context:
space:
mode:
authorAlex Morcos <morcos@chaincode.com>2017-01-19 16:18:24 -0500
committerAlex Morcos <morcos@chaincode.com>2017-01-19 20:31:29 -0500
commitde6400de5d4b654007f21901d9555ddea0face82 (patch)
tree152210a039c84554b6a44df3e45e8fa8c242e100 /src/wallet
parent5b158707f23a290c750a083c8f7d43915bcc48c5 (diff)
downloadbitcoin-de6400de5d4b654007f21901d9555ddea0face82.tar.xz
Fix missing use of dustRelayFee
Diffstat (limited to 'src/wallet')
-rw-r--r--src/wallet/rpcwallet.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wallet/rpcwallet.cpp b/src/wallet/rpcwallet.cpp
index 07c3688a4d..c0f7bbcb42 100644
--- a/src/wallet/rpcwallet.cpp
+++ b/src/wallet/rpcwallet.cpp
@@ -2834,7 +2834,7 @@ UniValue bumpfee(const JSONRPCRequest& request)
// If the output would become dust, discard it (converting the dust to fee)
poutput->nValue -= nDelta;
- if (poutput->nValue <= poutput->GetDustThreshold(::minRelayTxFee)) {
+ if (poutput->nValue <= poutput->GetDustThreshold(::dustRelayFee)) {
LogPrint("rpc", "Bumping fee and discarding dust output\n");
nNewFee += poutput->nValue;
tx.vout.erase(tx.vout.begin() + nOutput);