Skip to content

Commit

Permalink
relay: Add chain writer method onto the dummy relayer (#13789)
Browse files Browse the repository at this point in the history
  • Loading branch information
nickcorin authored Jul 9, 2024
1 parent b5c0ea9 commit e140a2b
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .changeset/good-paws-switch.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"chainlink": patch
---

#internal add `NewChainWriter` method onto the dummy relayer.
4 changes: 4 additions & 0 deletions core/services/relay/dummy/relayer.go
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,10 @@ func NewRelayer(lggr logger.Logger, chainID string) loop.Relayer {
return &relayer{lggr, chainID}
}

func (r *relayer) NewChainWriter(ctx context.Context, chainWriterConfig []byte) (types.ChainWriter, error) {
return nil, nil
}

func (r *relayer) NewContractReader(ctx context.Context, contractReaderConfig []byte) (types.ContractReader, error) {
return nil, nil
}
Expand Down

0 comments on commit e140a2b

Please sign in to comment.