diff --git a/api/gateway/mntx/internal/service/gateway/card_processor.go b/api/gateway/mntx/internal/service/gateway/card_processor.go index 17e68001..b20b06ba 100644 --- a/api/gateway/mntx/internal/service/gateway/card_processor.go +++ b/api/gateway/mntx/internal/service/gateway/card_processor.go @@ -50,7 +50,7 @@ type cardPayoutProcessor struct { dispatchMu sync.Mutex nextDispatchAllowed time.Time - retryPolicy payoutFailurePolicy + retryPolicy payoutFailurePolicy retryDelayFn func(attempt uint32) time.Duration retryMu sync.Mutex diff --git a/api/gateway/mntx/internal/service/gateway/payout_failure_policy_test.go b/api/gateway/mntx/internal/service/gateway/payout_failure_policy_test.go index 58b8b3df..d5566f57 100644 --- a/api/gateway/mntx/internal/service/gateway/payout_failure_policy_test.go +++ b/api/gateway/mntx/internal/service/gateway/payout_failure_policy_test.go @@ -50,4 +50,3 @@ func TestPayoutFailureReason(t *testing.T) { t.Fatalf("failure reason mismatch: got=%q want=%q", got, want) } } -