From 017c775c583c83de495d67e6398201cf2092bb77 Mon Sep 17 00:00:00 2001 From: PJ Date: Wed, 28 Feb 2024 10:23:31 +0100 Subject: [PATCH] autopilot: fix json key casing --- autopilot/churn.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/autopilot/churn.go b/autopilot/churn.go index fdc1a0f54..31a1073cf 100644 --- a/autopilot/churn.go +++ b/autopilot/churn.go @@ -32,10 +32,10 @@ func (c *accumulatedChurn) Alert(name string) alerts.Alert { Severity: alerts.SeverityInfo, Message: "Contract set changed", Data: map[string]any{ - "name": name, - "set_additions": c.additions, - "set_removals": c.removals, - "hint": hint, + "name": name, + "setAdditions": c.additions, + "setRemovals": c.removals, + "hint": hint, }, Timestamp: time.Now(), }