Skip to content

Commit

Permalink
fix election loop
Browse files Browse the repository at this point in the history
  • Loading branch information
cedricfung committed Oct 30, 2023
1 parent 00f8da2 commit 54222cc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions kernel/boot.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ func (node *Node) Loop() error {
}
}()
go node.LoopCacheQueue()
go node.MintLoop()
node.ElectionLoop()
go node.ElectionLoop()
node.MintLoop()
return nil
}

Expand Down

0 comments on commit 54222cc

Please sign in to comment.