mirror of
https://github.com/XRPLF/rippled.git
synced 2026-06-05 17:56:49 +00:00
Merge branch 'develop' into mvadari/rearch/account
This commit is contained in:
@@ -78,8 +78,8 @@ checkNoRipple(
|
||||
if (!sleIn || !sleOut)
|
||||
return terNO_LINE;
|
||||
|
||||
if ((((*sleIn)[sfFlags] & ((cur > prev) ? lsfHighNoRipple : lsfLowNoRipple)) != 0u) &&
|
||||
(((*sleOut)[sfFlags] & ((cur > next) ? lsfHighNoRipple : lsfLowNoRipple)) != 0u))
|
||||
if (sleIn->isFlag((cur > prev) ? lsfHighNoRipple : lsfLowNoRipple) &&
|
||||
sleOut->isFlag((cur > next) ? lsfHighNoRipple : lsfLowNoRipple))
|
||||
{
|
||||
JLOG(j.info()) << "Path violates noRipple constraint between " << prev << ", " << cur
|
||||
<< " and " << next;
|
||||
|
||||
Reference in New Issue
Block a user