From 21b7861d3719c92f7fb4e5b9fe96441e4e61fa78 Mon Sep 17 00:00:00 2001 From: james-prysm <90280386+james-prysm@users.noreply.github.com> Date: Wed, 17 Aug 2022 11:11:04 -0500 Subject: [PATCH] Keymanager API: enum lowercase (#11194) --- validator/rpc/apimiddleware/structs.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/validator/rpc/apimiddleware/structs.go b/validator/rpc/apimiddleware/structs.go index 0f164f78a..b96e8e0c7 100644 --- a/validator/rpc/apimiddleware/structs.go +++ b/validator/rpc/apimiddleware/structs.go @@ -24,7 +24,7 @@ type deleteKeystoresRequestJson struct { } type statusJson struct { - Status string `json:"status"` + Status string `json:"status" enum:"true"` Message string `json:"message"` }