mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-19 18:32:23 +00:00
core/types: add blockTimestamp for type Log
Signed-off-by: tmelhao <tmelhao@gmail.com>
This commit is contained in:
parent
d4b81f0e08
commit
cf6f3f2f12
2 changed files with 26 additions and 18 deletions
|
|
@ -23,6 +23,7 @@ func (l Log) MarshalJSON() ([]byte, error) {
|
|||
TxIndex hexutil.Uint `json:"transactionIndex" rlp:"-"`
|
||||
BlockHash common.Hash `json:"blockHash" rlp:"-"`
|
||||
Index hexutil.Uint `json:"logIndex" rlp:"-"`
|
||||
BlockTimestamp uint64 `json:"blockTimestamp" rlp:"-"`
|
||||
Removed bool `json:"removed" rlp:"-"`
|
||||
}
|
||||
var enc Log
|
||||
|
|
@ -34,6 +35,7 @@ func (l Log) MarshalJSON() ([]byte, error) {
|
|||
enc.TxIndex = hexutil.Uint(l.TxIndex)
|
||||
enc.BlockHash = l.BlockHash
|
||||
enc.Index = hexutil.Uint(l.Index)
|
||||
enc.BlockTimestamp = l.BlockTimestamp
|
||||
enc.Removed = l.Removed
|
||||
return json.Marshal(&enc)
|
||||
}
|
||||
|
|
@ -49,6 +51,7 @@ func (l *Log) UnmarshalJSON(input []byte) error {
|
|||
TxIndex *hexutil.Uint `json:"transactionIndex" rlp:"-"`
|
||||
BlockHash *common.Hash `json:"blockHash" rlp:"-"`
|
||||
Index *hexutil.Uint `json:"logIndex" rlp:"-"`
|
||||
BlockTimestamp *uint64 `json:"blockTimestamp" rlp:"-"`
|
||||
Removed *bool `json:"removed" rlp:"-"`
|
||||
}
|
||||
var dec Log
|
||||
|
|
@ -83,6 +86,9 @@ func (l *Log) UnmarshalJSON(input []byte) error {
|
|||
if dec.Index != nil {
|
||||
l.Index = uint(*dec.Index)
|
||||
}
|
||||
if dec.BlockTimestamp != nil {
|
||||
l.BlockTimestamp = *dec.BlockTimestamp
|
||||
}
|
||||
if dec.Removed != nil {
|
||||
l.Removed = *dec.Removed
|
||||
}
|
||||
|
|
|
|||
|
|
@ -47,6 +47,8 @@ type Log struct {
|
|||
BlockHash common.Hash `json:"blockHash" rlp:"-"`
|
||||
// index of the log in the block
|
||||
Index uint `json:"logIndex" rlp:"-"`
|
||||
// timestamp of the block in which the transaction was included
|
||||
BlockTimestamp uint64 `json:"blockTimestamp" rlp:"-"`
|
||||
|
||||
// The Removed field is true if this log was reverted due to a chain reorganisation.
|
||||
// You must pay attention to this field if you receive logs through a filter query.
|
||||
|
|
|
|||
Loading…
Reference in a new issue