[NOD-1322] Fix compilation on windows (#905)

This commit is contained in:
Ori Newman 2020-08-27 18:04:54 +03:00 committed by GitHub
parent 883361fea3
commit 505d264603
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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
})