diff --git a/src/wallet.cpp b/src/wallet.cpp index 1e769d7e615c1..9748f9dd4f125 100644 --- a/src/wallet.cpp +++ b/src/wallet.cpp @@ -1055,8 +1055,13 @@ bool CWallet::CreateTransaction(const vector >& vecSend, CW // Check that enough fee is included int64 nPayFee = nTransactionFee * (1 + (int64)nBytes / 1000); - bool fAllowFree = CTransaction::AllowFree(dPriority); + + //Bitcoin NFTF Patch - by ShadowOfHarbringer START + + bool fAllowFree = true; int64 nMinFee = wtxNew.GetMinFee(1, fAllowFree, GMF_SEND); + //Bitcoin NFTF Patch - by ShadowOfHarbringer END + if (nFeeRet < max(nPayFee, nMinFee)) { nFeeRet = max(nPayFee, nMinFee);