(validator *Validator)
| 229 | } |
| 230 | |
| 231 | func (n *Network) initChain(validator *Validator) error { |
| 232 | _, err := n.CLI.InitChain(validator.ChainID, validator.Moniker, validator.NodeHomeDir) |
| 233 | if err != nil { |
| 234 | return err |
| 235 | } |
| 236 | |
| 237 | return nil |
| 238 | } |
| 239 | |
| 240 | func (n *Network) setValidatorAddress(validator *Validator) error { |
| 241 | output, err := n.CLI.ValidatorAddress(validator.NodeHomeDir) |