mirror of
https://github.com/LBRYFoundation/lbcd.git
synced 2025-08-23 17:47:24 +00:00
[lbry] mining: enlarge updateHash channel buffers
This commit is contained in:
parent
e0870db24e
commit
29f64f9dcf
1 changed files with 1 additions and 1 deletions
|
@ -638,6 +638,6 @@ func New(cfg *Config) *CPUMiner {
|
||||||
numWorkers: defaultNumWorkers,
|
numWorkers: defaultNumWorkers,
|
||||||
updateNumWorkers: make(chan struct{}),
|
updateNumWorkers: make(chan struct{}),
|
||||||
queryHashesPerSec: make(chan float64),
|
queryHashesPerSec: make(chan float64),
|
||||||
updateHashes: make(chan uint64),
|
updateHashes: make(chan uint64, 512),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue