Skip to content

Commit efdad03

Browse files
committed
Fixes missing arg
1 parent d7f8786 commit efdad03

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

apps/hellgate/src/hg_limiter.erl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -325,7 +325,7 @@ rollback_refund_limits(TurnoverLimits, Invoice, Payment, Refund, Route) ->
325325
{LegacyTurnoverLimits, BatchTurnoverLimits} = split_turnover_limits_by_available_limiter_api(TurnoverLimits),
326326
ok = legacy_rollback_refund_limits(Context, LegacyTurnoverLimits, Invoice, Payment, Refund),
327327
OperationIdSegments = make_refund_operation_segments(Invoice, Payment, Refund),
328-
ok = batch_rollback_limits(Context, BatchTurnoverLimits, OperationIdSegments).
328+
ok = batch_rollback_limits(Context, BatchTurnoverLimits, OperationIdSegments, []).
329329

330330
legacy_rollback_refund_limits(Context, TurnoverLimits, Invoice, Payment, Refund) ->
331331
ChangeIDs = [construct_refund_change_id(Invoice, Payment, Refund)],

0 commit comments

Comments
 (0)