()
| 428 | func (b *Block) Number() *big.Int { return new(big.Int).Set(b.header.Number) } |
| 429 | func (b *Block) GasLimit() uint64 { return b.header.GasLimit } |
| 430 | func (b *Block) GasUsed() uint64 { return b.header.GasUsed } |
| 431 | |
| 432 | func (b *Block) Time() *big.Int { return new(big.Int).Set(b.header.Time) } |
| 433 | func (b *Block) Timestamp() time.Time { return b.Header().Timestamp() } |
no outgoing calls