Correct error message in other input tx lookup.

This commit is contained in:
Dave Collins 2013-08-28 13:50:47 -05:00
parent ffa56b437c
commit 117765ba7c

View file

@ -605,7 +605,7 @@ func checkTransactionInputs(tx *btcwire.MsgTx, txHeight int64, txStore map[btcwi
originTx, exists := txStore[*txInHash] originTx, exists := txStore[*txInHash]
if !exists { if !exists {
str := fmt.Sprintf("unable to find input transaction "+ str := fmt.Sprintf("unable to find input transaction "+
"%v for transaction %v", txHash, txInHash) "%v for transaction %v", txInHash, txHash)
return 0, RuleError(str) return 0, RuleError(str)
} }