mirror of
https://github.com/lightningnetwork/lnd.git
synced 2025-08-31 17:51:33 +02:00
lnd: add debug log when syncing blocks
This commit is contained in:
5
lnd.go
5
lnd.go
@@ -635,12 +635,15 @@ func Main(cfg *Config, lisCfg ListenerCfg, implCfg *ImplementationCfg,
|
||||
return nil
|
||||
}
|
||||
|
||||
synced, _, err := activeChainControl.Wallet.IsSynced()
|
||||
synced, ts, err := activeChainControl.Wallet.IsSynced()
|
||||
if err != nil {
|
||||
return mkErr("unable to determine if wallet is "+
|
||||
"synced: %v", err)
|
||||
}
|
||||
|
||||
ltndLog.Debugf("Syncing to block timestamp: %v, is synced=%v",
|
||||
time.Unix(ts, 0), synced)
|
||||
|
||||
if synced {
|
||||
break
|
||||
}
|
||||
|
Reference in New Issue
Block a user