From 7f25ccec496a621c4b1057dfff1240698a6ba662 Mon Sep 17 00:00:00 2001 From: JoelKatz Date: Thu, 16 May 2013 19:31:52 -0700 Subject: [PATCH] Make sure to check the signature, even in this odd edge case. --- src/cpp/ripple/LedgerMaster.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cpp/ripple/LedgerMaster.cpp b/src/cpp/ripple/LedgerMaster.cpp index 6240c80e34..b671240b42 100644 --- a/src/cpp/ripple/LedgerMaster.cpp +++ b/src/cpp/ripple/LedgerMaster.cpp @@ -103,7 +103,7 @@ Ledger::pointer LedgerMaster::closeLedger(bool recover) { TransactionEngineParams tepFlags = tapOPEN_LEDGER; - if (theApp->isNew(it->first.getTXID(), SF_SIGGOOD)); + if (theApp->isNew(it->first.getTXID(), SF_SIGGOOD)) tepFlags = static_cast(tepFlags | tapNO_CHECK_SIGN); bool didApply;