Skip to content

Commit

Permalink
Fix error post merge
Browse files Browse the repository at this point in the history
  • Loading branch information
ljoss17 committed Oct 16, 2024
1 parent ff81b93 commit a75f031
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/relayer/src/chain/cosmos.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2853,7 +2853,7 @@ pub async fn query_ccv_consumer_id(
let grpc_addr = Uri::from_str(&config.grpc_addr.to_string())
.map_err(|e| Error::invalid_uri(config.grpc_addr.to_string(), e))?;

let mut client = create_grpc_client(grpc_addr, QueryClient::new)
let mut client = create_grpc_client(&grpc_addr, QueryClient::new)
.await?
.max_decoding_message_size(config.max_grpc_decoding_size.get_bytes() as usize);

Expand Down

0 comments on commit a75f031

Please sign in to comment.