Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions pkg/types/core/relayerset.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ import (

"github.com/smartcontractkit/chainlink-common/pkg/services"
"github.com/smartcontractkit/chainlink-common/pkg/types"
ocrtypes "github.com/smartcontractkit/libocr/offchainreporting2plus/types"
)

type RelayerSet interface {
Expand All @@ -16,8 +17,9 @@ type RelayerSet interface {
}

type PluginArgs struct {
TransmitterID string
PluginConfig []byte
TransmitterID string
PluginConfig []byte
CapRegConfigTracker ocrtypes.ContractConfigTracker
}

type RelayArgs struct {
Expand Down
6 changes: 4 additions & 2 deletions pkg/types/relayer.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ import (
"github.com/smartcontractkit/chainlink-common/pkg/types/chains/ton"
"github.com/smartcontractkit/chainlink-common/pkg/types/query"
"github.com/smartcontractkit/chainlink-common/pkg/types/query/primitives"
ocrtypes "github.com/smartcontractkit/libocr/offchainreporting2plus/types"
)

type RelayID struct {
Expand Down Expand Up @@ -48,8 +49,9 @@ func (i *RelayID) UnmarshalString(s string) error {
// It's possible that the plugin config might actually be different
// per relay type, so we pass the config directly through.
type PluginArgs struct {
TransmitterID string
PluginConfig []byte
TransmitterID string
PluginConfig []byte
CapRegConfigTracker ocrtypes.ContractConfigTracker
}

// RelayArgs are the args required to create relayer.
Expand Down
Loading