-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.go
30 lines (26 loc) · 908 Bytes
/
config.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
/*
Copyright IBM Corp. All Rights Reserved.
SPDX-License-Identifier: Apache-2.0
*/
package nwo
// Config holds the basic information needed to generate
// fabric configuration files.
type Config struct {
Organizations []*Organization `yaml:"organizations,omitempty"`
Consortiums []*Consortium `yaml:"consortiums,omitempty"`
SystemChannel *SystemChannel `yaml:"system_channel,omitempty"`
Channels []*Channel `yaml:"channels,omitempty"`
Consensus *Consensus `yaml:"consensus,omitempty"`
Orderers []*Orderer `yaml:"orderers,omitempty"`
Peers []*Peer `yaml:"peers,omitempty"`
Profiles []*Profile `yaml:"profiles,omitempty"`
}
func (c *Config) RemovePeer(orgName, peerName string) {
peers := []*Peer{}
for _, p := range c.Peers {
if p.Organization != orgName || p.Name != peerName {
peers = append(peers, p)
}
}
c.Peers = peers
}