Fix comment typo in addblock.

This commit is contained in:
Dave Collins 2014-03-20 00:37:35 -05:00
parent 9f1382f03c
commit ee19fd79e4

View file

@ -271,8 +271,8 @@ func (bi *blockImporter) Import() chan *importResults {
bi.doneChan <- true bi.doneChan <- true
}() }()
// Start the status handler and return the result the channel that it // Start the status handler and return the result channel that it will
// will send the results on when the import is done. // send the results on when the import is done.
resultChan := make(chan *importResults) resultChan := make(chan *importResults)
go bi.statusHandler(resultChan) go bi.statusHandler(resultChan)
return resultChan return resultChan