From df229cf42043f8eb5300751ab1bf75ab4d8a65e0 Mon Sep 17 00:00:00 2001 From: hfuss Date: Tue, 1 Mar 2022 19:52:59 -0500 Subject: [PATCH] Using Renamed FFDX Plugin for Dataexchange Signed-off-by: hfuss --- internal/core/firefly_config.go | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/internal/core/firefly_config.go b/internal/core/firefly_config.go index 7033e368..98487c62 100644 --- a/internal/core/firefly_config.go +++ b/internal/core/firefly_config.go @@ -101,8 +101,8 @@ type BlockchainConfig struct { } type DataExchangeConfig struct { - Type string `yaml:"type,omitempty"` - HTTPS *HttpEndpointConfig `yaml:"https,omitempty"` + Type string `yaml:"type,omitempty"` + FFDX *HttpEndpointConfig `yaml:"ffdx,omitempty"` } type CommonDBConfig struct { @@ -204,7 +204,8 @@ func NewFireflyConfig(stack *types.Stack, member *types.Member) *FireflyConfig { }, }, DataExchange: &DataExchangeConfig{ - HTTPS: &HttpEndpointConfig{ + Type: "ffdx", + FFDX: &HttpEndpointConfig{ URL: getDataExchangeURL(member), }, },