outbox for gateways

This commit is contained in:
Stephan D
2026-02-18 01:35:28 +01:00
parent 974caf286c
commit 69531cee73
221 changed files with 12172 additions and 782 deletions

View File

@@ -49,7 +49,7 @@ func stepLiveness(
pStep, ok := pStepIdx[step.Code]
if !ok {
logger.Error("step missing in payment plan",
logger.Error("Step missing in payment plan",
zap.String("step_id", step.Code),
)
return StepDead
@@ -58,7 +58,7 @@ func stepLiveness(
for _, depID := range pStep.DependsOn {
dep := eStepIdx[depID]
if dep == nil {
logger.Warn("dependency missing in execution plan",
logger.Warn("Dependency missing in execution plan",
zap.String("step_id", step.Code),
zap.String("dep_id", depID),
)