Skip to content

Commit

Permalink
fix for fyeo-41 (XRPLF#44)
Browse files Browse the repository at this point in the history
  • Loading branch information
RichardAH committed Mar 14, 2023
1 parent cd8faf6 commit f732d72
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ripple/app/tx/impl/Transactor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1349,7 +1349,7 @@ doTSH(
{
// this is a collect call so first check if the tsh can accept
uint32_t tshFlags = tshAcc->getFieldU32(sfFlags);
if (!canRollback && !(tshFlags & lsfTshCollect))
if (!(tshFlags & lsfTshCollect))
{
// this TSH doesn't allow collect calls, skip
JLOG(j_.trace())
Expand Down

0 comments on commit f732d72

Please sign in to comment.