We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 75da588 commit 462812bCopy full SHA for 462812b
scripts/services/migrations.ts
@@ -249,6 +249,24 @@ export const migration: T.ExpectedExports.migration =
249
{ version: "26.0.0", type: "down" }
250
),
251
},
252
+ "26.0.0.1": {
253
+ up: compat.migrations.updateConfig((config: any) => config, false, {
254
+ version: "26.0.0.1",
255
+ type: "up",
256
+ }),
257
+ down: compat.migrations.updateConfig(
258
+ (config: any) => {
259
+ delete config.coinstatsindex;
260
+ delete config.advanced.mempool.permitbaremultisig;
261
+ delete config.advanced.mempool.datacarrier;
262
+ delete config.advanced.mempool.datacarriersize;
263
+
264
+ return config;
265
+ },
266
+ true,
267
+ { version: "26.0.0.1", type: "down" }
268
+ ),
269
270
271
"26.0.0.1"
272
);
0 commit comments