From 4bfcd12897aaf8c0088e4b97f0584334cc54fc23 Mon Sep 17 00:00:00 2001 From: Vinnie Falco Date: Mon, 22 Feb 2016 14:40:41 -0500 Subject: [PATCH] Disable Rules assignment in Ledger::setup: This is a temporary fix for a thread-unsafe access. --- src/ripple/app/ledger/Ledger.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/ripple/app/ledger/Ledger.cpp b/src/ripple/app/ledger/Ledger.cpp index d6d92d8a1..91d6ef38e 100644 --- a/src/ripple/app/ledger/Ledger.cpp +++ b/src/ripple/app/ledger/Ledger.cpp @@ -715,6 +715,7 @@ Ledger::setup (Config const& config) Throw(); } +#if 0 try { rules_ = Rules(*this); @@ -727,6 +728,7 @@ Ledger::setup (Config const& config) { Throw(); } +#endif return ret; }