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
{{ message }}
This repository was archived by the owner on Nov 15, 2023. It is now read-only.
jsonrpsee supports three different types on calls sync, async and blocking
The methods has just been ported how they were defined via https://github.com/paritytech/jsonrpc so just sync or async but some RPC calls that are sync I/O such as reading DB might facilitate from using tokio::spawn_blocking instead of tokio::spawn which is used for the calls defined as async RPC calls.