Add missing format specifier in mempool.go.

Found by go vet.
This commit is contained in:
Dave Collins 2013-10-04 00:38:33 -05:00
parent f983b0846e
commit 1db523883e

View file

@ -222,8 +222,8 @@ func checkTransactionStandard(tx *btcwire.MsgTx, height int64) error {
// Each transaction input signature script must only contain
// opcodes which push data onto the stack.
if !btcscript.IsPushOnlyScript(txIn.SignatureScript) {
return fmt.Errorf("transaction input %d: signature " +
"script is not push only")
return fmt.Errorf("transaction input %d: signature "+
"script is not push only", i)
}
}