kaspanet / rusty-kaspa

Kaspa full-node and related libraries in the Rust programming language. This is a stable version at the initial rollout phases.
ISC License
371 stars 118 forks source link

Optimize RPC Submit Block with more handlers #355

Closed coderofstuff closed 6 months ago

coderofstuff commented 6 months ago

Have a small pool of handlers (~5) for this message type.

If handlers are not keeping up, reject block submissions (instead of awaiting the distribution channel which blocks other message types such as get block template hence getting the miner stuck on old template)

coderofstuff commented 6 months ago

Fixed by #357