From 117765ba7c26412c9a432f4b05763027e66e87f6 Mon Sep 17 00:00:00 2001 From: Dave Collins Date: Wed, 28 Aug 2013 13:50:47 -0500 Subject: [PATCH] Correct error message in other input tx lookup. --- validate.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/validate.go b/validate.go index 73f8d60d..c072b00f 100644 --- a/validate.go +++ b/validate.go @@ -605,7 +605,7 @@ func checkTransactionInputs(tx *btcwire.MsgTx, txHeight int64, txStore map[btcwi originTx, exists := txStore[*txInHash] if !exists { str := fmt.Sprintf("unable to find input transaction "+ - "%v for transaction %v", txHash, txInHash) + "%v for transaction %v", txInHash, txHash) return 0, RuleError(str) }