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
The bootstrap system is entirely asynchronous but for the signature for the get_state function.
This is currently required in order to make it cancel in a tokio::select! macro inside the node. module main.rs file, with the cancellation condition being the ctrl-c interupt.
With a means to provide this cancellation without the requirement of an async context, this function can become sync.
The text was updated successfully, but these errors were encountered:
The bootstrap system is entirely asynchronous but for the signature for the
get_state
function.This is currently required in order to make it cancel in a
tokio::select!
macro inside the node. modulemain.rs
file, with the cancellation condition being thectrl-c
interupt.With a means to provide this cancellation without the requirement of an async context, this function can become sync.
The text was updated successfully, but these errors were encountered: