mirror of
https://github.com/status-im/op-geth.git
synced 2025-01-10 14:46:16 +00:00
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
|
|
}
|