Skip to content

Commit

Permalink
formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
Kayanski committed Aug 23, 2023
1 parent 4425ef0 commit 793aa2e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/starship/src/core.rs
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ impl StarshipClient {
&self,
chain_id_a: &str,
chain_id_b: &str,
) -> StarshipClientResult<String>{
) -> StarshipClientResult<String> {
// find an hermes pod with these ids
let relayer = self.config.relayer_for(chain_id_a, chain_id_b)?;
// get the pod id
Expand Down Expand Up @@ -119,7 +119,6 @@ impl StarshipClient {
port_b: &str,
channel_version: &str,
) -> StarshipClientResult<()> {

let pod_id = self.find_hermes_pod(chain_id_a, chain_id_b).await?;

// get the ibc channel between the two chains
Expand Down Expand Up @@ -177,7 +176,8 @@ impl StarshipClient {
.arg(pod_id)
.arg("--")
.args(command)
.spawn().unwrap();
.spawn()
.unwrap();

Ok(())
}
Expand Down

0 comments on commit 793aa2e

Please sign in to comment.