Skip to content

Commit

Permalink
fix: cosmos relay function in bridge (HugoByte#175)
Browse files Browse the repository at this point in the history
  • Loading branch information
shreyasbhat0 authored Sep 25, 2023
1 parent 7357580 commit a97a4ff
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cli/commands/bridge/relays/ibc.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ func IbcRelayCmd(diveContext *common.DiveContext) *cobra.Command {
diveContext.Error(err.Error())
}

result := stratIbcRelay(diveContext, enclaveCtx)
result := startIbcRelay(diveContext, enclaveCtx)

err = common.WriteToFile(result)

Expand All @@ -49,7 +49,7 @@ func IbcRelayCmd(diveContext *common.DiveContext) *cobra.Command {
return ibcRelayCommand
}

func stratIbcRelay(diveContext *common.DiveContext, enclaveContext *enclaves.EnclaveContext) string {
func startIbcRelay(diveContext *common.DiveContext, enclaveContext *enclaves.EnclaveContext) string {
diveContext.StartSpinner(" Starting IBC Setup")
chains := initChains(chainA, chainB, serviceA, serviceB, false)
var starlarkExecutionResponse string
Expand Down

0 comments on commit a97a4ff

Please sign in to comment.