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
commit e6623f98b3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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