Files
tendermint/vm/receipt.go

15 lines
231 B
Go
Raw Normal View History

2015-03-16 02:24:08 -07:00
package vm
import ()
type Receipt struct {
Index uint
Address []byte
Topics [][]byte
Data []byte
}
func (self *Receipt) String() string {
return fmt.Sprintf("[A=%x T=%x D=%x]", self.Address, self.Topics, self.Data)
}