forked from cerc-io/plugeth
core: add Timestamp method in BlockGen (#26844)
Since forks are now scheduled by block time, it can be necessary to check the timestamp of a block while generating transactions.
This commit is contained in:
parent
051493d9bf
commit
564db9a95f
@ -156,6 +156,11 @@ func (b *BlockGen) Number() *big.Int {
|
||||
return new(big.Int).Set(b.header.Number)
|
||||
}
|
||||
|
||||
// Timestamp returns the timestamp of the block being generated.
|
||||
func (b *BlockGen) Timestamp() uint64 {
|
||||
return b.header.Time
|
||||
}
|
||||
|
||||
// BaseFee returns the EIP-1559 base fee of the block being generated.
|
||||
func (b *BlockGen) BaseFee() *big.Int {
|
||||
return new(big.Int).Set(b.header.BaseFee)
|
||||
|
Loading…
Reference in New Issue
Block a user