Skip to content

Commit

Permalink
[BCI-3438] Add ctx to NewChainWriter method (#780)
Browse files Browse the repository at this point in the history
  • Loading branch information
nickcorin committed Jul 8, 2024
1 parent 294b81e commit 0546185
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/solana/relay.go
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ func (r *Relayer) NewConfigProvider(args relaytypes.RelayArgs) (relaytypes.Confi
return configWatcher, err
}

func (r *Relayer) NewChainWriter(_ []byte) (relaytypes.ChainWriter, error) {
func (r *Relayer) NewChainWriter(_ context.Context, _ []byte) (relaytypes.ChainWriter, error) {
return nil, errors.New("chain writer is not supported for solana")
}

Expand Down

0 comments on commit 0546185

Please sign in to comment.