From 4ee9a160dd0313b4972fcae7a398d3b23a99127e Mon Sep 17 00:00:00 2001 From: Ethan Buchman <ethan@coinculture.info> Date: Fri, 11 Mar 2016 10:45:09 -0500 Subject: [PATCH] use hex to log bytes --- .../src/github.com/tendermint/tendermint/types/node.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Godeps/_workspace/src/github.com/tendermint/tendermint/types/node.go b/Godeps/_workspace/src/github.com/tendermint/tendermint/types/node.go index 52a93c5c..1cbc4156 100644 --- a/Godeps/_workspace/src/github.com/tendermint/tendermint/types/node.go +++ b/Godeps/_workspace/src/github.com/tendermint/tendermint/types/node.go @@ -60,7 +60,7 @@ func (ni *NodeInfo) CompatibleWith(no *NodeInfo) error { // nodes must share a common genesis root if !bytes.Equal(ni.Genesis, no.Genesis) { - return fmt.Errorf("Peer has a different genesis root. Got %v, expected %v", no.Genesis, ni.Genesis) + return fmt.Errorf("Peer has a different genesis root. Got %X, expected %X", no.Genesis, ni.Genesis) } return nil -- GitLab