Hi,
We’ve upgraded our node to 6.0.4 in testnet and also updated rust sdk to version 2.4.0 (from crates.io). When calling get_consensus_info().await?, we get the error
"Call failed: status: InvalidArgument, message: “missing field in response”
Our code is something like this:
Blockquote
let node_endpoint = Endpoint::from_str(smart_config.concordium_url.as_str())?;
let mut client = Client::new(node_endpoint).await?;
let consensus_info = client.get_consensus_info().await?;
Blockquote
It used to work last week, but it is failing now. It seems the error is coming from impl TryFrom for super::types::queries::ConsensusInfo in conversion.rs
Can you please help?