This commit is contained in:
obscuren
2015-03-17 16:05:17 +01:00
parent 0fa7859b94
commit c21293cd91
3 changed files with 20 additions and 14 deletions

View File

@@ -88,5 +88,5 @@ func (self *Log) RlpData() interface{} {
*/
func (self *Log) String() string {
return fmt.Sprintf("[A=%x T=%x D=%x]", self.address, self.topics, self.data)
return fmt.Sprintf("{%x %x %x}", self.address, self.data, self.topics)
}