core/vm, core/state: added storage to structured vm logging

This commit is contained in:
obscuren
2015-06-10 12:57:37 +02:00
parent 38c61f6f25
commit 6fb6e6679e
4 changed files with 39 additions and 9 deletions

View File

@ -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 {