mirror of
https://github.com/lightningnetwork/lnd.git
synced 2025-06-01 18:50:09 +02:00
lnd: log sync status in GetInfo
This is added to fix a flake found in starting the node.
This commit is contained in:
parent
8ad122bd03
commit
70dec8e169
11
rpcserver.go
11
rpcserver.go
@ -9056,6 +9056,9 @@ func (r *rpcServer) getChainSyncInfo() (*chainSyncInfo, error) {
|
||||
|
||||
// Exit early if the wallet is not synced.
|
||||
if !isSynced {
|
||||
rpcsLog.Debugf("Wallet is not synced to height %v yet",
|
||||
bestHeight)
|
||||
|
||||
return info, nil
|
||||
}
|
||||
|
||||
@ -9074,6 +9077,9 @@ func (r *rpcServer) getChainSyncInfo() (*chainSyncInfo, error) {
|
||||
|
||||
// Exit early if the channel graph is not synced.
|
||||
if !isSynced {
|
||||
rpcsLog.Debugf("Graph is not synced to height %v yet",
|
||||
bestHeight)
|
||||
|
||||
return info, nil
|
||||
}
|
||||
|
||||
@ -9084,5 +9090,10 @@ func (r *rpcServer) getChainSyncInfo() (*chainSyncInfo, error) {
|
||||
// Overwrite isSynced and return.
|
||||
info.isSynced = height == bestHeight
|
||||
|
||||
if !info.isSynced {
|
||||
rpcsLog.Debugf("Blockbeat is not synced to height %v yet",
|
||||
bestHeight)
|
||||
}
|
||||
|
||||
return info, nil
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user