Skip to content

Commit

Permalink
Node/EVM: Celo not setting timestamp in blocks (#3603)
Browse files Browse the repository at this point in the history
  • Loading branch information
bruce-riley authored Dec 14, 2023
1 parent bfd4ba4 commit ef408a9
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions node/pkg/watchers/evm/connectors/celo.go
Original file line number Diff line number Diff line change
Expand Up @@ -173,16 +173,19 @@ func (c *CeloConnector) SubscribeForBlocks(ctx context.Context, errC chan error,
sink <- &NewBlock{
Number: ev.Number,
Hash: hash,
Time: ev.Time,
Finality: Finalized,
}
sink <- &NewBlock{
Number: ev.Number,
Hash: hash,
Time: ev.Time,
Finality: Safe,
}
sink <- &NewBlock{
Number: ev.Number,
Hash: hash,
Time: ev.Time,
Finality: Latest,
}
}
Expand Down

0 comments on commit ef408a9

Please sign in to comment.