mirror of
https://github.com/kaspanet/kaspad.git
synced 2026-02-24 12:23:22 +00:00
Compare commits
3 Commits
v0.6.6-dev
...
v0.6.7-dev
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
505d264603 | ||
|
|
883361fea3 | ||
|
|
13a6872a45 |
@@ -268,6 +268,9 @@ func (rtn *reachabilityTreeNode) addChild(child *reachabilityTreeNode, reindexRo
|
||||
rtn.children = append(rtn.children, child)
|
||||
child.parent = rtn
|
||||
|
||||
modifiedNodes[rtn] = struct{}{}
|
||||
modifiedNodes[child] = struct{}{}
|
||||
|
||||
// Temporarily set the child's interval to be empty, at
|
||||
// the start of rtn's remaining interval. This is done
|
||||
// so that child-of-rtn checks (e.g.
|
||||
@@ -312,8 +315,6 @@ func (rtn *reachabilityTreeNode) addChild(child *reachabilityTreeNode, reindexRo
|
||||
return err
|
||||
}
|
||||
child.interval = allocated
|
||||
modifiedNodes[rtn] = struct{}{}
|
||||
modifiedNodes[child] = struct{}{}
|
||||
return nil
|
||||
}
|
||||
|
||||
|
||||
@@ -68,7 +68,7 @@ func (s *kaspadService) Execute(args []string, r <-chan svc.ChangeRequest, chang
|
||||
// be properly logged
|
||||
doneChan := make(chan error)
|
||||
startedChan := make(chan struct{})
|
||||
spawn(func() {
|
||||
spawn("kaspadMain-windows", func() {
|
||||
err := kaspadMain(startedChan)
|
||||
doneChan <- err
|
||||
})
|
||||
|
||||
@@ -11,7 +11,7 @@ const validCharacters = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrs
|
||||
const (
|
||||
appMajor uint = 0
|
||||
appMinor uint = 6
|
||||
appPatch uint = 6
|
||||
appPatch uint = 7
|
||||
)
|
||||
|
||||
// appBuild is defined as a variable so it can be overridden during the build
|
||||
|
||||
Reference in New Issue
Block a user