mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-31 06:21:02 +00:00
Fixed best_ethereum_block() call parameters encoding (#188)
* fixed best_ethereum_block() params encoding * updated versions
This commit is contained in:
committed by
Bastian Köcher
parent
a7208c05e0
commit
ebdfffc4b1
@@ -134,7 +134,7 @@ impl SubstrateRpc for SubstrateRpcClient {
|
||||
|
||||
async fn best_ethereum_block(&self) -> Result<EthereumHeaderId> {
|
||||
let call = ETH_API_BEST_BLOCK.to_string();
|
||||
let data = Bytes("0x".into());
|
||||
let data = Bytes(Vec::new());
|
||||
|
||||
let encoded_response = Substrate::state_call(&self.client, call, data, None).await?;
|
||||
let decoded_response: (u64, sp_bridge_eth_poa::H256) = Decode::decode(&mut &encoded_response.0[..])?;
|
||||
|
||||
Reference in New Issue
Block a user