Skip to content

Commit

Permalink
Added NewCCIPCommitProvider + NewCCIPExecProvider to relay
Browse files Browse the repository at this point in the history
  • Loading branch information
patrickhuie19 committed May 31, 2024
1 parent 17ffc78 commit f75e7fe
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions pkg/solana/relay.go
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,13 @@ func (r *Relayer) NewMercuryProvider(rargs relaytypes.RelayArgs, pargs relaytype

func (r *Relayer) NewLLOProvider(rargs relaytypes.RelayArgs, pargs relaytypes.PluginArgs) (relaytypes.LLOProvider, error) {
return nil, errors.New("data streams is not supported for solana")

func (r *Relayer) NewCCIPCommitProvider(rargs relaytypes.RelayArgs, pargs relaytypes.PluginArgs) (relaytypes.CCIPCommitProvider, error) {

Check failure on line 83 in pkg/solana/relay.go

View workflow job for this annotation

GitHub Actions / Relay Run Unit Tests

syntax error: unexpected relaytypes in argument list; possibly missing comma or )
return nil, errors.New("ccip.commit is not supported for solana")
}

func (r *Relayer) NewCCIPExecProvider(rargs relaytypes.RelayArgs, pargs relaytypes.PluginArgs) (relaytypes.CCIPExecProvider, error) {
return nil, errors.New("ccip.exec is not supported for solana")
}

func (r *Relayer) NewConfigProvider(args relaytypes.RelayArgs) (relaytypes.ConfigProvider, error) {
Expand Down

0 comments on commit f75e7fe

Please sign in to comment.