From 422894674721d62a0f73b9b69c80efca5ebbc028 Mon Sep 17 00:00:00 2001 From: Richard Holland Date: Tue, 14 Mar 2023 12:14:58 +0000 Subject: [PATCH] fix for fyeo-45 (#48) --- src/ripple/app/tx/impl/Transactor.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ripple/app/tx/impl/Transactor.cpp b/src/ripple/app/tx/impl/Transactor.cpp index fb8b41a72..f16a425d3 100644 --- a/src/ripple/app/tx/impl/Transactor.cpp +++ b/src/ripple/app/tx/impl/Transactor.cpp @@ -1613,7 +1613,7 @@ Transactor::operator()() // Pre-application (Strong TSH) Hooks are executed here // These TSH have the right to rollback. // Weak TSH and callback are executed post-application. - if (hooksEnabled && (result == tesSUCCESS || result == tecHOOK_REJECTED)) + if (hooksEnabled && result == tesSUCCESS) { // this state map will be shared across all hooks in this execution chain // and any associated chains which are executed during this transaction also