We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 46d3091 commit 2b9a640Copy full SHA for 2b9a640
client/relay-chain-rpc-interface/src/rpc_client.rs
@@ -141,12 +141,9 @@ impl RelayChainRpcClient {
141
at: RelayHash,
142
index: SessionIndex,
143
) -> Result<Option<OldV1SessionInfo>, RelayChainError> {
144
- self.call_remote_runtime_function(
145
- "ParachainHost_session_info_before_version_2",
146
- at,
147
- Some(index),
148
- )
149
- .await
+ // The function in wasm never changes/gets augmented with a version
+ self.call_remote_runtime_function("ParachainHost_session_info", at, Some(index))
+ .await
150
}
151
152
/// Scrape dispute relevant from on-chain, backing votes and resolved disputes.
0 commit comments