Returns the index entry for the genesis block of this chain, or nullptr if none. */
| 577 | |
| 578 | /** Returns the index entry for the genesis block of this chain, or nullptr if none. */ |
| 579 | CBlockIndex* Genesis() const |
| 580 | { |
| 581 | return vChain.size() > 0 ? vChain[0] : nullptr; |
| 582 | } |
| 583 | |
| 584 | /** Returns the index entry for the tip of this chain, or nullptr if none. */ |
| 585 | CBlockIndex* Tip() const |