| 1878 | m_from_snapshot_blockhash(from_snapshot_blockhash) {} |
| 1879 | |
| 1880 | fs::path Chainstate::StoragePath() const |
| 1881 | { |
| 1882 | fs::path path{m_chainman.m_options.datadir / "chainstate"}; |
| 1883 | if (m_from_snapshot_blockhash) { |
| 1884 | path += node::SNAPSHOT_CHAINSTATE_SUFFIX; |
| 1885 | } |
| 1886 | return path; |
| 1887 | } |
| 1888 | |
| 1889 | const CBlockIndex* Chainstate::SnapshotBase() const |
| 1890 | { |
no outgoing calls
no test coverage detected