aboutsummaryrefslogtreecommitdiffstats
path: root/vm/log.go
blob: 954d2ec91ef662cc424c5e95e7ce761974d68235 (plain) (blame)
1
2
3
4
5
6
7
8
9
package vm

import "math/big"

type Log struct {
    Address []byte
    Topics  []*big.Int
    Data    []byte
}