core/vm, core/state: added storage to structured vm logging
This commit is contained in:
@ -34,11 +34,12 @@ type Environment interface {
|
||||
}
|
||||
|
||||
type StructLog struct {
|
||||
Pc uint64
|
||||
Op OpCode
|
||||
Gas *big.Int
|
||||
Memory []byte
|
||||
Stack []*big.Int
|
||||
Pc uint64
|
||||
Op OpCode
|
||||
Gas *big.Int
|
||||
Memory []byte
|
||||
Stack []*big.Int
|
||||
Storage map[common.Hash][]byte
|
||||
}
|
||||
|
||||
type Account interface {
|
||||
|
Reference in New Issue
Block a user