From 1db523883ee622913908eb44799b29c9a5c4c8ac Mon Sep 17 00:00:00 2001 From: Dave Collins Date: Fri, 4 Oct 2013 00:38:33 -0500 Subject: [PATCH] Add missing format specifier in mempool.go. Found by go vet. --- mempool.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mempool.go b/mempool.go index b0a7a365..2dc50f54 100644 --- a/mempool.go +++ b/mempool.go @@ -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) } }