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 45f8513 commit 2375a06Copy full SHA for 2375a06
relayer/src/chain/cosmos/account.rs
@@ -73,11 +73,10 @@ impl fmt::Display for AccountSequence {
73
74
/// Uses the GRPC client to retrieve the account sequence
75
pub async fn query_account(chain: &CosmosSdkChain, address: String) -> Result<BaseAccount, Error> {
76
- use crate::chain::ChainEndpoint;
77
use ibc_proto::cosmos::auth::v1beta1::query_client::QueryClient;
78
use ibc_proto::cosmos::auth::v1beta1::{EthAccount, QueryAccountRequest};
79
80
- crate::telemetry!(query, chain.id(), "query_account");
+ crate::telemetry!(query, &chain.config.id, "query_account");
81
82
let mut client = QueryClient::connect(chain.grpc_addr.clone())
83
.await
0 commit comments