mirror of
https://github.com/arnaucube/go-ethereum.git
synced 2026-02-28 22:16:45 +01: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
|
|
}
|