rpc: expose graph synced status within GetInfo

This commit is contained in:
Wilmer Paulino
2019-07-29 13:31:05 -07:00
parent 977c139f3c
commit 8ca2c79bfe
4 changed files with 515 additions and 494 deletions

View File

@@ -2029,6 +2029,8 @@ func (r *rpcServer) GetInfo(ctx context.Context,
uris[i] = fmt.Sprintf("%s@%s", encodedIDPub, addr.String())
}
isGraphSynced := r.server.authGossiper.SyncManager().IsGraphSynced()
// TODO(roasbeef): add synced height n stuff
return &lnrpc.GetInfoResponse{
IdentityPubkey: encodedIDPub,
@@ -2046,6 +2048,7 @@ func (r *rpcServer) GetInfo(ctx context.Context,
Color: routing.EncodeHexColor(nodeAnn.RGBColor),
BestHeaderTimestamp: int64(bestHeaderTimestamp),
Version: build.Version(),
SyncedToGraph: isGraphSynced,
}, nil
}