You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// All proving tasks are executed concurrently, which can cause issues for large// block intervals, where distant future blocks may be proven first.//// We then create a pool to limit the number of parallel proving block// tasks, retrieving new blocks in increasing order when some block proofs are// complete.//// While proving a block interval, we will output proofs corresponding to block// batches as soon as they are generated.constPARALLEL_BLOCK_PROVING_PERMIT_POOL_SIZE:usize = 16;staticPARALLEL_BLOCK_PROVING_PERMIT_POOL:Semaphore =
Semaphore::const_new(PARALLEL_BLOCK_PROVING_PERMIT_POOL_SIZE);
is kind of limiting. I have to manually tweak it when testing every time, and will be heavily impacted by the activity of the targeted network, so it would be preferable to have it as configurable.
The text was updated successfully, but these errors were encountered:
The code snippet below:
is kind of limiting. I have to manually tweak it when testing every time, and will be heavily impacted by the activity of the targeted network, so it would be preferable to have it as configurable.
The text was updated successfully, but these errors were encountered: