()
| 16 | } |
| 17 | |
| 18 | func (c *PlannerConfig) IsTargetExecutionClient() bool { |
| 19 | for _, execClient := range c.ExecutionClients { |
| 20 | if execClient.Name == c.FaultConfig.TargetClient { |
| 21 | return true |
| 22 | } |
| 23 | } |
| 24 | return false |
| 25 | } |
| 26 | |
| 27 | func (c *PlannerConfig) IsTargetConsensusClient() bool { |
| 28 | for _, consClient := range c.ConsensusClients { |
no outgoing calls
no test coverage detected