From 9ae1307c175bb30f10c6cb68477c90edfb505c28 Mon Sep 17 00:00:00 2001 From: cam-schultz Date: Tue, 24 Oct 2023 01:54:03 +0000 Subject: [PATCH] correct json tag --- config/config.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/config.go b/config/config.go index 2d027cf5..d05c1ced 100644 --- a/config/config.go +++ b/config/config.go @@ -49,7 +49,7 @@ type SourceSubnet struct { RPCEndpoint string `mapstructure:"rpc-endpoint" json:"rpc-endpoint"` WSEndpoint string `mapstructure:"ws-endpoint" json:"ws-endpoint"` MessageContracts map[string]MessageProtocolConfig `mapstructure:"message-contracts" json:"message-contracts"` - SupportedDestinations []string `mapstructure:"supported-destinations" json:"allowed-destinations"` + SupportedDestinations []string `mapstructure:"supported-destinations" json:"supported-destinations"` // convenience field to access the supported destinations after initialization supportedDestinationsMap map[ids.ID]bool