mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-27 23:26:44 +00:00
Minor bug fix
This commit is contained in:
parent
e63e390ec7
commit
ad658b6b99
1 changed files with 1 additions and 1 deletions
|
|
@ -128,7 +128,7 @@ func (m *taskStatusManager) addDependencies(blocker int, dependent int) bool {
|
|||
// Blocker has already completed
|
||||
delete(curblockers, blocker)
|
||||
|
||||
return false
|
||||
return len(curblockers) > 0
|
||||
}
|
||||
|
||||
if _, ok := m.dependency[blocker]; !ok {
|
||||
|
|
|
|||
Loading…
Reference in a new issue