()
| 25 | } |
| 26 | |
| 27 | func (c *PlannerConfig) IsTargetConsensusClient() bool { |
| 28 | for _, consClient := range c.ConsensusClients { |
| 29 | if consClient.Name == c.FaultConfig.TargetClient { |
| 30 | return true |
| 31 | } |
| 32 | } |
| 33 | return false |
| 34 | } |
| 35 | |
| 36 | type EthKurtosisConfig struct { |
| 37 | Participants []*Participant `yaml:"participants"` |
no outgoing calls
no test coverage detected