MCPcopy Create free account
hub / github.com/BTCGPU/BTCGPU / initialize

Method initialize

src/qt/bitcoin.cpp:256–268  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

254}
255
256void BitcoinCore::initialize()
257{
258 try
259 {
260 qDebug() << __func__ << ": Running initialization in thread";
261 bool rv = m_node.appInitMain();
262 Q_EMIT initializeResult(rv);
263 } catch (const std::exception& e) {
264 handleRunawayException(&e);
265 } catch (...) {
266 handleRunawayException(nullptr);
267 }
268}
269
270void BitcoinCore::shutdown()
271{

Callers

nothing calls this directly

Calls 1

appInitMainMethod · 0.80

Tested by

no test coverage detected