mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-20 10:52:25 +00:00
eth: use synced flag
This commit is contained in:
parent
b98b30bcb8
commit
281a704544
1 changed files with 2 additions and 2 deletions
|
|
@ -237,8 +237,8 @@ func newHandler(config *handlerConfig) (*handler, error) {
|
||||||
// accept each others' blocks until a restart. Unfortunately we haven't figured
|
// accept each others' blocks until a restart. Unfortunately we haven't figured
|
||||||
// out a way yet where nodes can decide unilaterally whether the network is new
|
// out a way yet where nodes can decide unilaterally whether the network is new
|
||||||
// or not. This should be fixed if we figure out a solution.
|
// or not. This should be fixed if we figure out a solution.
|
||||||
if h.snapSync.Load() {
|
if !h.synced.Load() {
|
||||||
log.Warn("Snap syncing, discarded propagated block", "number", blocks[0].Number(), "hash", blocks[0].Hash())
|
log.Warn("Syncing, discarded propagated block", "number", blocks[0].Number(), "hash", blocks[0].Hash())
|
||||||
return 0, nil
|
return 0, nil
|
||||||
}
|
}
|
||||||
if h.merger.TDDReached() {
|
if h.merger.TDDReached() {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue