Skip to content

Commit

Permalink
fix: ensure that relayer startup flags are consumed properly (#829)
Browse files Browse the repository at this point in the history
(cherry picked from commit 74d4dbd)
  • Loading branch information
jtieri authored and mergify[bot] committed Oct 17, 2023
1 parent ef23cf6 commit 393ead4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion relayer/rly/cosmos_relayer.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ type CosmosRelayer struct {
}

func NewCosmosRelayer(log *zap.Logger, testName string, cli *client.Client, networkID string, options ...relayer.RelayerOpt) *CosmosRelayer {
c := commander{log: log}
c := &commander{log: log}

dr, err := relayer.NewDockerRelayer(context.TODO(), log, testName, cli, networkID, c, options...)
if err != nil {
Expand Down

0 comments on commit 393ead4

Please sign in to comment.