mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-02-28 00:27:26 +00:00
9 lines
103 B
Go
9 lines
103 B
Go
package vm
|
|
|
|
import "math/big"
|
|
|
|
type Log struct {
|
|
Address []byte
|
|
Topics []*big.Int
|
|
Data []byte
|
|
}
|