eth/fetcher: fix a closure data race

release/0.9.36
Péter Szilágyi 10 years ago
parent 99ca4b619b
commit 3ce17d2862
  1. 5
      eth/fetcher/fetcher.go

@ -281,12 +281,13 @@ func (f *Fetcher) loop() {
glog.V(logger.Detail).Infof("Peer %s: fetching %s", peer, list)
}
hashes := hashes // closure!
// Create a closure of the fetch and schedule in on a new thread
fetcher, hashes := f.fetching[hashes[0]].fetch, hashes
go func() {
if f.fetchingHook != nil {
f.fetchingHook(hashes)
}
f.fetching[hashes[0]].fetch(hashes)
fetcher(hashes)
}()
}
// Schedule the next fetch if blocks are still pending

Loading…
Cancel
Save