| 102 | std::unique_ptr<const CChainParams> g_params; |
| 103 | |
| 104 | void initialize() |
| 105 | { |
| 106 | // this is actually comparatively slow, so only do it once |
| 107 | g_params = CreateChainParams(ArgsManager{}, CBaseChainParams::MAIN); |
| 108 | assert(g_params != nullptr); |
| 109 | } |
| 110 | |
| 111 | constexpr uint32_t MAX_START_TIME = 4102444800; // 2100-01-01 |
| 112 |
nothing calls this directly
no test coverage detected