Skip to content

Commit

Permalink
Merge pull request #47 from fpco/add-getter-for-grpc-fallbacks
Browse files Browse the repository at this point in the history
Add getter for grpc fallback urls
  • Loading branch information
snoyberg authored Oct 23, 2024
2 parents 207c67a + 80c56be commit 133778b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/cosmos/src/cosmos_builder.rs
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,8 @@ impl CosmosBuilder {
self.grpc_fallback_urls.push(url.into().into());
}

pub(crate) fn grpc_fallback_urls(&self) -> &Vec<Arc<String>> {
/// gRPC fallback URLs
pub fn grpc_fallback_urls(&self) -> &Vec<Arc<String>> {
&self.grpc_fallback_urls
}

Expand Down

0 comments on commit 133778b

Please sign in to comment.