From d5113377e2ccceef1a7a9d7394f6f8d4fc18acb5 Mon Sep 17 00:00:00 2001 From: Ethan Buchman Date: Tue, 16 May 2017 14:00:54 +0200 Subject: [PATCH] fix tx string format --- types/tx.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/types/tx.go b/types/tx.go index 28b84397..b36d4440 100644 --- a/types/tx.go +++ b/types/tx.go @@ -21,7 +21,7 @@ func (tx Tx) Hash() []byte { } func (tx Tx) String() string { - return fmt.Sprintf("Tx{%X}") + return fmt.Sprintf("Tx{%X}", tx) } type Txs []Tx