diff options
author | Péter Szilágyi <peterke@gmail.com> | 2016-07-26 17:26:41 +0800 |
---|---|---|
committer | Péter Szilágyi <peterke@gmail.com> | 2016-07-26 17:26:41 +0800 |
commit | 071af57bcf516d92a0b56c5bb119d9576d32b5cb (patch) | |
tree | 231f07213e84944324a1f92c32b5c5a2a4c729cc /eth/handler.go | |
parent | a724952f7530d6709abada4d4da727409f703eb3 (diff) | |
download | go-tangerine-071af57bcf516d92a0b56c5bb119d9576d32b5cb.tar.gz go-tangerine-071af57bcf516d92a0b56c5bb119d9576d32b5cb.tar.zst go-tangerine-071af57bcf516d92a0b56c5bb119d9576d32b5cb.zip |
eth, eth/downloader: don't forward the DAO challenge header
Diffstat (limited to 'eth/handler.go')
-rw-r--r-- | eth/handler.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/eth/handler.go b/eth/handler.go index 9ad430976..b6e0141d9 100644 --- a/eth/handler.go +++ b/eth/handler.go @@ -440,6 +440,7 @@ func (pm *ProtocolManager) handleMsg(p *peer) error { return err } glog.V(logger.Debug).Infof("%v: verified to be on the same side of the DAO fork", p) + return nil } // Irrelevant of the fork checks, send the header to the fetcher just in case headers = pm.fetcher.FilterHeaders(headers, time.Now()) |