diff options
Diffstat (limited to 'dex/handler.go')
-rw-r--r-- | dex/handler.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dex/handler.go b/dex/handler.go index 57315f90a..ea5c31b36 100644 --- a/dex/handler.go +++ b/dex/handler.go @@ -793,7 +793,7 @@ func (pm *ProtocolManager) handleMsg(p *peer) error { // scenario should easily be covered by the fetcher. currentBlock := pm.blockchain.CurrentBlock() if trueNumber > currentBlock.NumberU64() { - go pm.synchronise(p) + go pm.synchronise(p, false) } } |