()
| 136 | } |
| 137 | |
| 138 | func NewGenesisConfig() *GenesisConfig { |
| 139 | return &GenesisConfig{ |
| 140 | SeedList: make([]string, 0), |
| 141 | ConsensusType: CONSENSUS_TYPE_SOLO, |
| 142 | VBFT: &VBFTConfig{}, |
| 143 | DBFT: &DBFTConfig{}, |
| 144 | SOLO: &SOLOConfig{ |
| 145 | GenBlockTime: DEFAULT_GEN_BLOCK_TIME, |
| 146 | }, |
| 147 | } |
| 148 | } |
| 149 | |
| 150 | // |
| 151 | // VBFT genesis config, from local config file |
no outgoing calls
no test coverage detected