From 27308719a57f4d2a23a6bcdbbad97ed39eefa7dc Mon Sep 17 00:00:00 2001 From: Jonathan Chappelow Date: Mon, 13 May 2024 11:00:21 -0500 Subject: [PATCH] kwild: fix cometbft client not setting "syncing" --- cmd/kwild/server/utils.go | 1 + 1 file changed, 1 insertion(+) diff --git a/cmd/kwild/server/utils.go b/cmd/kwild/server/utils.go index 9d5ca5430..4cfe9489e 100644 --- a/cmd/kwild/server/utils.go +++ b/cmd/kwild/server/utils.go @@ -101,6 +101,7 @@ func (wc *wrappedCometBFTClient) Status(ctx context.Context) (*types.Status, err BestBlockHash: strings.ToLower(si.LatestBlockHash.String()), BestBlockHeight: si.LatestBlockHeight, BestBlockTime: si.LatestBlockTime.UTC(), + Syncing: si.CatchingUp, }, Validator: &types.ValidatorInfo{ PubKey: vi.PubKey.Bytes(),