diff options
author | Péter Szilágyi <peterke@gmail.com> | 2016-06-02 20:54:07 +0800 |
---|---|---|
committer | Péter Szilágyi <peterke@gmail.com> | 2016-06-06 19:45:38 +0800 |
commit | 32559ccad1e0519ce1decc4b90df021fe215a811 (patch) | |
tree | 9955f4f42ecc8f946daf064ff68df58c38225801 /eth/sync.go | |
parent | 826efc22957bfdc4e23775f71ad77fdeed11fd6e (diff) | |
download | go-tangerine-32559ccad1e0519ce1decc4b90df021fe215a811.tar.gz go-tangerine-32559ccad1e0519ce1decc4b90df021fe215a811.tar.zst go-tangerine-32559ccad1e0519ce1decc4b90df021fe215a811.zip |
eth: don't accept transactions until we sync up with the network
Diffstat (limited to 'eth/sync.go')
-rw-r--r-- | eth/sync.go | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/eth/sync.go b/eth/sync.go index 4b16c1322..52f7e90e7 100644 --- a/eth/sync.go +++ b/eth/sync.go @@ -174,6 +174,8 @@ func (pm *ProtocolManager) synchronise(peer *peer) { if err := pm.downloader.Synchronise(peer.id, peer.Head(), peer.Td(), mode); err != nil { return } + atomic.StoreUint32(&pm.synced, 1) // Mark initial sync done + // If fast sync was enabled, and we synced up, disable it if atomic.LoadUint32(&pm.fastSync) == 1 { // Disable fast sync if we indeed have something in our chain |