mirror of
https://github.com/XRPLF/rippled.git
synced 2026-07-30 18:40:28 +00:00
refactor: SField and TER code renames (#7797)
This commit is contained in:
committed by
GitHub
parent
d3550fac60
commit
a41889df31
@@ -1261,7 +1261,7 @@ Transactor::operator()()
|
||||
}
|
||||
else if (
|
||||
(result == tecOVERSIZE) || (result == tecKILLED) || (result == tecINCOMPLETE) ||
|
||||
(result == tecEXPIRED) || (result == tecWASM_REJECTED) ||
|
||||
(result == tecEXPIRED) || (result == tecBYTECODE_REJECTED) ||
|
||||
(isTecClaimHardFail(result, view().flags())))
|
||||
{
|
||||
JLOG(j_.trace()) << "reapplying because of " << transToken(result);
|
||||
@@ -1281,7 +1281,7 @@ Transactor::operator()()
|
||||
bool const doLinesOrMPTs = (result == tecINCOMPLETE);
|
||||
bool const doNFTokenOffers = (result == tecEXPIRED);
|
||||
bool const doCredentials = (result == tecEXPIRED);
|
||||
bool const doWasmData = (result == tecWASM_REJECTED);
|
||||
bool const doWasmData = (result == tecBYTECODE_REJECTED);
|
||||
if (doOffers || doLinesOrMPTs || doNFTokenOffers || doCredentials || doWasmData)
|
||||
{
|
||||
ctx_.visit([doOffers,
|
||||
@@ -1374,7 +1374,7 @@ Transactor::operator()()
|
||||
view(), expiredCredentials, ctx_.registry.get().getJournal("View"));
|
||||
}
|
||||
|
||||
if (result == tecWASM_REJECTED)
|
||||
if (result == tecBYTECODE_REJECTED)
|
||||
{
|
||||
modifyWasmDataFields(
|
||||
view(), modifiedWasmObjects, ctx_.registry.get().getJournal("View"));
|
||||
|
||||
Reference in New Issue
Block a user