@@ -137,16 +137,11 @@ func GetKeys(keysDir string, runMode RunMode, circuits []string) []string {
137
137
}
138
138
139
139
var appendWithProofsKeys []string = []string {
140
- keysDir + "append-with-proofs_32_10.key" ,
141
140
keysDir + "append-with-proofs_32_500.key" ,
142
- // keysDir + "append-with-proofs_32_1000.key",
143
141
}
144
142
145
143
var updateKeys []string = []string {
146
- keysDir + "update_32_10.key" ,
147
- // keysDir + "update_32_100.key",
148
144
keysDir + "update_32_500.key" ,
149
- // keysDir + "update_32_1000.key",
150
145
}
151
146
152
147
var appendWithProofsTestKeys []string = []string {
@@ -158,24 +153,21 @@ func GetKeys(keysDir string, runMode RunMode, circuits []string) []string {
158
153
}
159
154
160
155
var addressAppendKeys []string = []string {
161
- keysDir + "address-append_40_10.key" ,
162
- keysDir + "address-append_40_100.key" ,
163
156
keysDir + "address-append_40_250.key" ,
164
- keysDir + "address-append_40_500.key" ,
165
- keysDir + "address-append_40_1000.key" ,
166
157
}
167
158
168
159
var addressAppendTestKeys []string = []string {
169
160
keysDir + "address-append_40_10.key" ,
170
161
}
171
162
172
163
switch runMode {
173
- case Forester : // inclusion + non-inclusion
164
+ case Forester : // inclusion + non-inclusion + append + update + address-append
174
165
keys = append (keys , inclusionKeys ... )
175
166
keys = append (keys , nonInclusionKeys ... )
176
167
keys = append (keys , appendWithProofsKeys ... )
177
168
keys = append (keys , updateKeys ... )
178
- case ForesterTest : // append-test + update-test + address-append-test
169
+ keys = append (keys , addressAppendKeys ... )
170
+ case ForesterTest : // inclusion + non-inclusion + combined + append-test + update-test + address-append-test
179
171
keys = append (keys , inclusionKeys ... )
180
172
keys = append (keys , nonInclusionKeys ... )
181
173
keys = append (keys , combinedKeys ... )
0 commit comments