From 9022f5034f952405d02f89c905104c80f0c13b8f Mon Sep 17 00:00:00 2001 From: obscuren Date: Thu, 29 Jan 2015 23:17:43 +0100 Subject: default values removed --- trie/node.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'trie/node.go') diff --git a/trie/node.go b/trie/node.go index a1f68480f..f28f24771 100644 --- a/trie/node.go +++ b/trie/node.go @@ -18,7 +18,7 @@ func (self *ValueNode) String() string { return self.fstring("") } func (self *FullNode) String() string { return self.fstring("") } func (self *ShortNode) String() string { return self.fstring("") } func (self *ValueNode) fstring(ind string) string { return fmt.Sprintf("%x ", self.data) } -func (self *HashNode) fstring(ind string) string { return fmt.Sprintf("%x ", self.key) } +func (self *HashNode) fstring(ind string) string { return fmt.Sprintf("< %x > ", self.key) } // Full node func (self *FullNode) fstring(ind string) string { -- cgit v1.2.3