Merge pull request #2359 from joostjager/nursery-bound-var

utxonursery: fix bound variable bug
This commit is contained in:
Olaoluwa Osuntokun
2018-12-21 14:39:40 -06:00
committed by GitHub

View File

@@ -807,7 +807,7 @@ func (u *utxoNursery) sweepMatureOutputs(classHeight uint32,
return err
}
u.wg.Add(1)
go u.waitForSweepConf(classHeight, &output, resultChan)
go u.waitForSweepConf(classHeight, &local, resultChan)
}
return nil