From 7c82adcc8496c0782f5d250504f20f0b294ea72b Mon Sep 17 00:00:00 2001 From: Edward Hennis Date: Mon, 25 Jan 2016 18:48:42 -0500 Subject: [PATCH] Avoid missing node errors on genesis ledger creation --- src/ripple/app/main/Application.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/ripple/app/main/Application.cpp b/src/ripple/app/main/Application.cpp index c55531440e..aad3416824 100644 --- a/src/ripple/app/main/Application.cpp +++ b/src/ripple/app/main/Application.cpp @@ -1158,6 +1158,7 @@ ApplicationImp::startGenesisLedger() m_networkOPs->setLastCloseTime (next->info().closeTime); openLedger_.emplace(next, cachedSLEs_, logs_->journal("OpenLedger")); + m_ledgerMaster->storeLedger(next); m_ledgerMaster->switchLCL (next); }