Fix log message.
This commit is contained in:
parent
eee338cbe3
commit
e9211bd01a
1 changed files with 1 additions and 1 deletions
|
@ -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
|
// treated this field as an int32 and would treat anything larger
|
||||||
// incorrectly (as negative).
|
// incorrectly (as negative).
|
||||||
if tx.MsgTx().LockTime > math.MaxInt32 {
|
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)
|
"2038 which is not accepted yet", txHash)
|
||||||
return TxRuleError(str)
|
return TxRuleError(str)
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue