diff --git a/src/wallet/wallet.cpp b/src/wallet/wallet.cpp index dd45262dc4..5417fa08af 100644 --- a/src/wallet/wallet.cpp +++ b/src/wallet/wallet.cpp @@ -1948,7 +1948,7 @@ bool CWallet::CreateTransaction(const vector >& vecSend, // Check that enough fee is included int64_t nPayFee = nTransactionFee * (1 + (int64_t)nBytes / 1000); - int64_t nMinFee = wtxNew.GetMinFee(1, GMF_SEND, nBytes); + int64_t nMinFee = wtxNew.GetMinFee(1000, GMF_SEND, nBytes); if (nFeeRet < max(nPayFee, nMinFee)) {