Browse Source

vm's Log events are lowercased

pull/118/head
Jae Kwon 9 years ago
parent
commit
d712ff05cf
1 changed files with 6 additions and 4 deletions
  1. +6
    -4
      vm/types.go

+ 6
- 4
vm/types.go View File

@ -25,11 +25,13 @@ func (acc *Account) String() string {
acc.Address, acc.Balance, acc.Code, acc.Nonce, acc.StorageRoot)
}
// NOTE: This is serialized as an event from vm/vm.
// See: EventStringLogEvent
type Log struct {
Address Word256
Topics []Word256
Data []byte
Height int64
Address Word256 `json:"address"`
Topics []Word256 `json:"topics"`
Data []byte `json:"data"`
Height int64 `json:"height"`
}
type AppState interface {


Loading…
Cancel
Save