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
In substrate, the RpcSession and RpcHandlers types are used to run RPC queries against the running node without passing over the normal http/ws machinery. Instead, JSON requests are sent via the rpc_query method directly to the running server. We currently do not have any way to do this but I suspect we could make good use of it for testing.
This mechanism is used by polkadot (for testing) and cumulus. The substrate-in-a-browser project also uses this (here). NOTE: only S-in-B seems to use this for non-test code.
The current substrate integration branch removes these types (happened here) and it needs to be re-implemented.
The text was updated successfully, but these errors were encountered:
In substrate, the
RpcSession
andRpcHandlers
types are used to run RPC queries against the running node without passing over the normal http/ws machinery. Instead, JSON requests are sent via therpc_query
method directly to the running server. We currently do not have any way to do this but I suspect we could make good use of it for testing.This mechanism is used by polkadot (for testing) and cumulus. The substrate-in-a-browser project also uses this (here). NOTE: only S-in-B seems to use this for non-test code.
The current substrate integration branch removes these types (happened here) and it needs to be re-implemented.
The text was updated successfully, but these errors were encountered: