You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if (nNewFeeRate.GetFeePerK() < minMempoolFeeRate.GetFeePerK()) {
199
-
vErrors.push_back(strprintf("New fee rate (%s) is less than the minimum fee rate (%s) to get into the mempool. totalFee value should to be at least %s or settxfee value should be at least %s to add transaction.", FormatMoney(nNewFeeRate.GetFeePerK()), FormatMoney(minMempoolFeeRate.GetFeePerK()), FormatMoney(minMempoolFeeRate.GetFee(maxNewTxSize)), FormatMoney(minMempoolFeeRate.GetFeePerK())));
199
+
vErrors.push_back(strprintf(
200
+
"New fee rate (%s) is lower than the minimum fee rate (%s) to get into the mempool -- "
201
+
"the totalFee value should be at least %s or the settxfee value should be at least %s to add transaction",
0 commit comments