Skip to content

Commit

Permalink
pkg/cosmos: close chain from relayer (#422)
Browse files Browse the repository at this point in the history
  • Loading branch information
jmank88 authored Oct 11, 2024
1 parent c334569 commit 938b0cf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/cosmos/relay.go
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ func (r *Relayer) Start(ctx context.Context) error {
return r.chain.Start(ctx)
}

func (r *Relayer) Close() error { return nil }
func (r *Relayer) Close() error { return r.chain.Close() }

func (r *Relayer) Ready() error {
return r.chain.Ready()
Expand Down

0 comments on commit 938b0cf

Please sign in to comment.