mirror of
https://github.com/fluencelabs/tendermint
synced 2025-07-03 06:31:40 +00:00
15 lines
231 B
Go
15 lines
231 B
Go
![]() |
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)
|
||
|
}
|