forked from cerc-io/plugeth
10 lines
103 B
Go
10 lines
103 B
Go
package vm
|
|
|
|
import "math/big"
|
|
|
|
type Log struct {
|
|
Address []byte
|
|
Topics []*big.Int
|
|
Data []byte
|
|
}
|