From b2d20f4f93095216c7d8d7ec1fbb0f84bd3b14fb Mon Sep 17 00:00:00 2001 From: Alex Freska Date: Wed, 17 Apr 2024 11:00:52 -0400 Subject: [PATCH] autopilot: add missing json tag to ConfigEvaluationResponse --- api/autopilot.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/autopilot.go b/api/autopilot.go index 3938d42b7..9ca917f6e 100644 --- a/api/autopilot.go +++ b/api/autopilot.go @@ -123,7 +123,7 @@ type ( } `json:"gouging"` NotAcceptingContracts uint64 `json:"notAcceptingContracts"` NotScanned uint64 `json:"notScanned"` - } + } `json:"unusable"` Recommendation *ConfigRecommendation `json:"recommendation,omitempty"` } )