diff --git a/types/tx.go b/types/tx.go index e62b5f66..5656638a 100644 --- a/types/tx.go +++ b/types/tx.go @@ -3,6 +3,7 @@ package types import ( "bytes" "errors" + "fmt" abci "github.com/tendermint/abci/types" "github.com/tendermint/tmlibs/merkle" @@ -18,6 +19,10 @@ func (tx Tx) Hash() []byte { return merkle.SimpleHashFromBinary(tx) } +func (tx Tx) String() string { + return fmt.Sprintf("Tx{%X}") +} + type Txs []Tx func (txs Txs) Hash() []byte {