From e9211bd01af9a715e255e4ce40c7c59dabd639bb Mon Sep 17 00:00:00 2001 From: David Hill Date: Thu, 12 Jun 2014 14:04:05 -0400 Subject: [PATCH] Fix log message. --- mempool.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mempool.go b/mempool.go index 9d0d7251..93ee8042 100644 --- a/mempool.go +++ b/mempool.go @@ -769,7 +769,7 @@ func (mp *txMemPool) maybeAcceptTransaction(tx *btcutil.Tx, isOrphan *bool, isNe // treated this field as an int32 and would treat anything larger // incorrectly (as negative). if tx.MsgTx().LockTime > math.MaxInt32 { - str := fmt.Sprintf("transaction %v is has a lock time after "+ + str := fmt.Sprintf("transaction %v has a lock time after "+ "2038 which is not accepted yet", txHash) return TxRuleError(str) }