From 7abd70356d320bb2c258ba81f579daa066cca8b3 Mon Sep 17 00:00:00 2001 From: seelabs Date: Thu, 29 Jun 2017 08:53:30 -0400 Subject: [PATCH] Ensure consistent transaction processing in debug mode: When NDEBUG is undefined (which is typical in debug configurations) existing code would perform additional checks which could result in a `tel` error. --- src/ripple/app/paths/impl/StrandFlow.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ripple/app/paths/impl/StrandFlow.h b/src/ripple/app/paths/impl/StrandFlow.h index 11035245d3..4abc661ed4 100644 --- a/src/ripple/app/paths/impl/StrandFlow.h +++ b/src/ripple/app/paths/impl/StrandFlow.h @@ -218,7 +218,7 @@ flow ( { JLOG (j.error()) << "Strand re-execute check failed. Step: " << i; - return {telFAILED_PROCESSING, std::move (ofrsToRm)}; + break; } } }