mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-05-19 22:40:31 +00:00
Combined two loops
This commit is contained in:
parent
fca3333f7f
commit
bdec8c3e41
1 changed files with 1 additions and 3 deletions
|
|
@ -266,14 +266,12 @@ func (self *worker) makeCurrent() {
|
||||||
block.Header().Extra = self.extra
|
block.Header().Extra = self.extra
|
||||||
|
|
||||||
current := env(block, self.eth)
|
current := env(block, self.eth)
|
||||||
for _, ancestor := range self.chain.GetAncestors(block, 7) {
|
|
||||||
current.ancestors.Add(ancestor.Hash())
|
|
||||||
}
|
|
||||||
for _, ancestor := range self.chain.GetAncestors(block, 7) {
|
for _, ancestor := range self.chain.GetAncestors(block, 7) {
|
||||||
for _, uncle := range ancestor.Uncles() {
|
for _, uncle := range ancestor.Uncles() {
|
||||||
current.family.Add(uncle.Hash())
|
current.family.Add(uncle.Hash())
|
||||||
}
|
}
|
||||||
current.family.Add(ancestor.Hash())
|
current.family.Add(ancestor.Hash())
|
||||||
|
current.ancestors.Add(ancestor.Hash())
|
||||||
}
|
}
|
||||||
accounts, _ := self.eth.AccountManager().Accounts()
|
accounts, _ := self.eth.AccountManager().Accounts()
|
||||||
// Keep track of transactions which return errors so they can be removed
|
// Keep track of transactions which return errors so they can be removed
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue