| 581 | } |
| 582 | |
| 583 | Block ClientBase::block(BlockNumber _h) const |
| 584 | { |
| 585 | if (_h == PendingBlock) |
| 586 | return postSeal(); |
| 587 | else if (_h == LatestBlock) |
| 588 | return preSeal(); |
| 589 | return block(bc().numberHash(_h)); |
| 590 | } |
| 591 | |
| 592 | int ClientBase::chainId() const |
| 593 | { |
no test coverage detected