diff --git a/relayer/relays/execution/config.go b/relayer/relays/execution/config.go index e35ddce7b6..1f97b635fc 100644 --- a/relayer/relays/execution/config.go +++ b/relayer/relays/execution/config.go @@ -2,7 +2,7 @@ package execution import ( "github.com/snowfork/snowbridge/relayer/config" - BeaconConfigs "github.com/snowfork/snowbridge/relayer/relays/beacon/config" + beaconconf "github.com/snowfork/snowbridge/relayer/relays/beacon/config" ) type Config struct { @@ -11,10 +11,10 @@ type Config struct { } type SourceConfig struct { - Ethereum config.EthereumConfig `mapstructure:"ethereum"` - Contracts ContractsConfig `mapstructure:"contracts"` - ChannelID ChannelID `mapstructure:"channel-id"` - Beacon BeaconConfigs.BeaconConfig `mapstructure:"beacon"` + Ethereum config.EthereumConfig `mapstructure:"ethereum"` + Contracts ContractsConfig `mapstructure:"contracts"` + ChannelID ChannelID `mapstructure:"channel-id"` + Beacon beaconconf.BeaconConfig `mapstructure:"beacon"` } type ContractsConfig struct {