Merge pull request #3142 from fjl/trie-sync-fix

trie: fix regression that linked all downloaded nodes together
pull/3156/head
Péter Szilágyi 8 years ago committed by GitHub
commit b19b7c39ac
  1. 2
      trie/sync.go

@ -213,11 +213,13 @@ func (s *TrieSync) children(req *request) ([]*request, error) {
switch node := (*req.object).(type) {
case *shortNode:
node = node.copy() // Prevents linking all downloaded nodes together.
children = []child{{
node: &node.Val,
depth: req.depth + len(node.Key),
}}
case *fullNode:
node = node.copy()
for i := 0; i < 17; i++ {
if node.Children[i] != nil {
children = append(children, child{

Loading…
Cancel
Save