This commit is contained in:
jl777
2017-02-07 07:05:20 +02:00
parent 41ef5e500c
commit 1e3fdfaabc

View File

@@ -2802,7 +2802,9 @@ fprintf(stderr,"wallet change %.8f (%.8f - %.8f) interest %.8f interest2 %.8f to
break;
}
CAmount nFeeNeeded = MAX(5000,GetMinimumFee(nBytes, nTxConfirmTarget, mempool));
CAmount nFeeNeeded = GetMinimumFee(nBytes, nTxConfirmTarget, mempool);
if ( nFeeNeeded < 5000 )
nFeeNeeded = 5000;
// If we made it here and we aren't even able to meet the relay fee on the next pass, give up
// because we must be at the maximum allowed fee.