diff --git a/internal/stacks/stack_manager.go b/internal/stacks/stack_manager.go index b763f106..fe9607a1 100644 --- a/internal/stacks/stack_manager.go +++ b/internal/stacks/stack_manager.go @@ -837,7 +837,6 @@ func (s *StackManager) runFirstTimeSetup(options *types.StartOptions) (messages Predefined: []*types.Namespace{ { Name: "default", - RemoteName: "default", Description: "Default predefined namespace", Plugins: []string{"database0", "blockchain0"}, }, diff --git a/pkg/types/namespace.go b/pkg/types/namespace.go index a6f209a6..196c286a 100644 --- a/pkg/types/namespace.go +++ b/pkg/types/namespace.go @@ -18,11 +18,10 @@ package types type Namespace struct { Name string `yaml:"name"` - RemoteName string `yaml:"remotename,omitempty"` Description string `yaml:"description,omitempty"` Plugins []string `yaml:"plugins"` Multiparty *MultipartyConfig `yaml:"multiparty,omitempty"` - DefaultKey interface{} `yaml:"defaultkey"` + DefaultKey interface{} `yaml:"defaultKey"` } type Plugins struct { @@ -41,7 +40,7 @@ type MultipartyConfig struct { type ContractConfig struct { Location interface{} `yaml:"location"` - FirstEvent string `yaml:"firstevent"` + FirstEvent string `yaml:"firstEvent"` } type MultipartyOrgConfig struct {