| 80 | std::unique_ptr<const CChainParams> g_params; |
| 81 | |
| 82 | void initialize() |
| 83 | { |
| 84 | // this is actually comparatively slow, so only do it once |
| 85 | g_params = CreateChainParams(ArgsManager{}, ChainType::MAIN); |
| 86 | assert(g_params != nullptr); |
| 87 | } |
| 88 | |
| 89 | constexpr uint32_t MAX_START_TIME = 4102444800; // 2100-01-01 |
| 90 |
nothing calls this directly
no test coverage detected