Skip to content

Commit

Permalink
starknet: Fix return type of chain writer constructor
Browse files Browse the repository at this point in the history
  • Loading branch information
nickcorin committed Jul 8, 2024
1 parent c9338e0 commit b374e4f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion relayer/pkg/chainlink/relay.go
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ func (r *relayer) HealthReport() map[string]error {
return map[string]error{r.Name(): r.Healthy()}
}

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

Expand Down

0 comments on commit b374e4f

Please sign in to comment.