core: added chain head reset to known block

This commit is contained in:
obscuren
2015-04-20 12:29:02 +02:00
parent 52584596d4
commit 45da3e17e2
4 changed files with 66 additions and 12 deletions

View File

@ -36,6 +36,7 @@ pm.chainman.InsertChain(blocks)
import (
"fmt"
"math"
"math/big"
"sync"
@ -326,7 +327,7 @@ func (pm *ProtocolManager) BroadcastBlock(hash common.Hash, block *types.Block)
}
// Broadcast block to peer set
// XXX due to the current shit state of the network disable the limit
//peers = peers[:int(math.Sqrt(float64(len(peers))))]
peers = peers[:int(math.Sqrt(float64(len(peers))))]
for _, peer := range peers {
peer.sendNewBlock(block)
}