From 24b9f8647c5660372aae6698deab2337defa7633 Mon Sep 17 00:00:00 2001 From: Jae Kwon Date: Fri, 26 Jun 2015 17:14:40 -0700 Subject: [PATCH] fix debug output --- consensus/reactor.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/consensus/reactor.go b/consensus/reactor.go index 0218f77cc..2032c943d 100644 --- a/consensus/reactor.go +++ b/consensus/reactor.go @@ -938,7 +938,7 @@ type BlockPartMessage struct { } func (m *BlockPartMessage) String() string { - return fmt.Sprintf("[BlockPart H:%v R:%v T:%X P:%v]", m.Height, m.Round, m.Part) + return fmt.Sprintf("[BlockPart H:%v R:%v P:%v]", m.Height, m.Round, m.Part) } //-------------------------------------