mirror of
https://github.com/XRPLF/rippled.git
synced 2025-12-06 17:27:55 +00:00
Allow more deliver loops when multiquality
This commit is contained in:
@@ -53,7 +53,10 @@ TER PathCursor::deliverNodeForward (
|
||||
while (resultCode == tesSUCCESS && saInAct + saInFees < saInReq)
|
||||
{
|
||||
// Did not spend all inbound deliver funds.
|
||||
if (++loopCount > CALC_NODE_DELIVER_MAX_LOOPS)
|
||||
if (++loopCount >
|
||||
(multiQuality_ ?
|
||||
CALC_NODE_DELIVER_MAX_LOOPS_MQ :
|
||||
CALC_NODE_DELIVER_MAX_LOOPS))
|
||||
{
|
||||
WriteLog (lsWARNING, RippleCalc)
|
||||
<< "deliverNodeForward: max loops cndf";
|
||||
|
||||
Reference in New Issue
Block a user