From 62d487122fdbe2d4e49823ee9c2babfb33eba5fc Mon Sep 17 00:00:00 2001 From: "John C. Vernaleo" Date: Fri, 12 Feb 2016 16:10:24 -0500 Subject: [PATCH] Fix formatting of an error message. --- mempool.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mempool.go b/mempool.go index 473f8551..cd92d4d1 100644 --- a/mempool.go +++ b/mempool.go @@ -1589,8 +1589,8 @@ func (mp *txMemPool) maybeAcceptTransaction(tx *dcrutil.Tx, isNew, minFee := calcMinRequiredTxRelayFee(serializedSize, mp.server.chainParams) if txType == stake.TxTypeRegular { // Non-stake only if serializedSize >= (defaultBlockPrioritySize-1000) && txFee < minFee { - str := fmt.Sprintf("transaction %v has %d fees which is under "+ - "the required amount of %d", txHash, txFee, + str := fmt.Sprintf("transaction %v has %v fees which is under "+ + "the required amount of %v", txHash, txFee, minFee) return nil, txRuleError(wire.RejectInsufficientFee, str) }