@@ -100,32 +100,32 @@ func (c *Config) GetAddress() common.Address {
100
100
}
101
101
102
102
type GnosisConfig struct {
103
- Node * configuration.EthnodeConfig `shconfig:",required"`
104
- Contracts * GnosisContractsConfig `shconfig:",required"`
105
- EncryptedGasLimit uint64 `shconfig:",required"`
106
- MinGasPerTransaction uint64 `shconfig:",required"`
107
- MaxTxPointerAge uint64 `shconfig:",required"`
108
- SecondsPerSlot uint64 `shconfig:",required"`
109
- SlotsPerEpoch uint64 `shconfig:",required"`
110
- GenesisSlotTimestamp uint64 `shconfig:",required"`
111
- SyncStartBlockNumber uint64 `shconfig:",required"`
112
- SyncMonitorCheckInterval uint64 `shconfig:",required"`
113
- V1ValidatorMessageEnabled bool `shconfig:",required"`
103
+ Node * configuration.EthnodeConfig `shconfig:",required"`
104
+ Contracts * GnosisContractsConfig `shconfig:",required"`
105
+ EncryptedGasLimit uint64 `shconfig:",required"`
106
+ MinGasPerTransaction uint64 `shconfig:",required"`
107
+ MaxTxPointerAge uint64 `shconfig:",required"`
108
+ SecondsPerSlot uint64 `shconfig:",required"`
109
+ SlotsPerEpoch uint64 `shconfig:",required"`
110
+ GenesisSlotTimestamp uint64 `shconfig:",required"`
111
+ SyncStartBlockNumber uint64 `shconfig:",required"`
112
+ SyncMonitorCheckInterval uint64 `shconfig:",required"`
113
+ EnableAggregateValidatorRegistrationV1 bool `shconfig:",required"`
114
114
}
115
115
116
116
func NewGnosisConfig () * GnosisConfig {
117
117
c := & GnosisConfig {
118
- Node : configuration .NewEthnodeConfig (),
119
- Contracts : NewGnosisContractsConfig (),
120
- EncryptedGasLimit : 0 ,
121
- MinGasPerTransaction : 0 ,
122
- MaxTxPointerAge : 0 ,
123
- SecondsPerSlot : 0 ,
124
- SlotsPerEpoch : 0 ,
125
- GenesisSlotTimestamp : 0 ,
126
- SyncStartBlockNumber : 0 ,
127
- SyncMonitorCheckInterval : 0 ,
128
- V1ValidatorMessageEnabled : false ,
118
+ Node : configuration .NewEthnodeConfig (),
119
+ Contracts : NewGnosisContractsConfig (),
120
+ EncryptedGasLimit : 0 ,
121
+ MinGasPerTransaction : 0 ,
122
+ MaxTxPointerAge : 0 ,
123
+ SecondsPerSlot : 0 ,
124
+ SlotsPerEpoch : 0 ,
125
+ GenesisSlotTimestamp : 0 ,
126
+ SyncStartBlockNumber : 0 ,
127
+ SyncMonitorCheckInterval : 0 ,
128
+ EnableAggregateValidatorRegistrationV1 : false ,
129
129
}
130
130
c .Init ()
131
131
return c
@@ -163,7 +163,7 @@ func (c *GnosisConfig) SetExampleValues() error {
163
163
c .GenesisSlotTimestamp = 1665410700
164
164
c .SyncStartBlockNumber = 0
165
165
c .SyncMonitorCheckInterval = 30
166
- c .V1ValidatorMessageEnabled = false
166
+ c .EnableAggregateValidatorRegistrationV1 = false
167
167
return nil
168
168
}
169
169
0 commit comments