@sentio/protos 2.41.4 → 2.41.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -377,6 +377,7 @@ export interface ExecutionConfig {
|
|
|
377
377
|
sequential: boolean;
|
|
378
378
|
forceExactBlockTime: boolean;
|
|
379
379
|
processBindingTimeout: number;
|
|
380
|
+
skipStartBlockValidation: boolean;
|
|
380
381
|
}
|
|
381
382
|
|
|
382
383
|
export interface ProcessConfigRequest {
|
|
@@ -1260,7 +1261,7 @@ export const ProjectConfig = {
|
|
|
1260
1261
|
};
|
|
1261
1262
|
|
|
1262
1263
|
function createBaseExecutionConfig(): ExecutionConfig {
|
|
1263
|
-
return { sequential: false, forceExactBlockTime: false, processBindingTimeout: 0 };
|
|
1264
|
+
return { sequential: false, forceExactBlockTime: false, processBindingTimeout: 0, skipStartBlockValidation: false };
|
|
1264
1265
|
}
|
|
1265
1266
|
|
|
1266
1267
|
export const ExecutionConfig = {
|
|
@@ -1274,6 +1275,9 @@ export const ExecutionConfig = {
|
|
|
1274
1275
|
if (message.processBindingTimeout !== 0) {
|
|
1275
1276
|
writer.uint32(24).int32(message.processBindingTimeout);
|
|
1276
1277
|
}
|
|
1278
|
+
if (message.skipStartBlockValidation !== false) {
|
|
1279
|
+
writer.uint32(32).bool(message.skipStartBlockValidation);
|
|
1280
|
+
}
|
|
1277
1281
|
return writer;
|
|
1278
1282
|
},
|
|
1279
1283
|
|
|
@@ -1305,6 +1309,13 @@ export const ExecutionConfig = {
|
|
|
1305
1309
|
|
|
1306
1310
|
message.processBindingTimeout = reader.int32();
|
|
1307
1311
|
continue;
|
|
1312
|
+
case 4:
|
|
1313
|
+
if (tag !== 32) {
|
|
1314
|
+
break;
|
|
1315
|
+
}
|
|
1316
|
+
|
|
1317
|
+
message.skipStartBlockValidation = reader.bool();
|
|
1318
|
+
continue;
|
|
1308
1319
|
}
|
|
1309
1320
|
if ((tag & 7) === 4 || tag === 0) {
|
|
1310
1321
|
break;
|
|
@@ -1319,6 +1330,9 @@ export const ExecutionConfig = {
|
|
|
1319
1330
|
sequential: isSet(object.sequential) ? globalThis.Boolean(object.sequential) : false,
|
|
1320
1331
|
forceExactBlockTime: isSet(object.forceExactBlockTime) ? globalThis.Boolean(object.forceExactBlockTime) : false,
|
|
1321
1332
|
processBindingTimeout: isSet(object.processBindingTimeout) ? globalThis.Number(object.processBindingTimeout) : 0,
|
|
1333
|
+
skipStartBlockValidation: isSet(object.skipStartBlockValidation)
|
|
1334
|
+
? globalThis.Boolean(object.skipStartBlockValidation)
|
|
1335
|
+
: false,
|
|
1322
1336
|
};
|
|
1323
1337
|
},
|
|
1324
1338
|
|
|
@@ -1333,6 +1347,9 @@ export const ExecutionConfig = {
|
|
|
1333
1347
|
if (message.processBindingTimeout !== 0) {
|
|
1334
1348
|
obj.processBindingTimeout = Math.round(message.processBindingTimeout);
|
|
1335
1349
|
}
|
|
1350
|
+
if (message.skipStartBlockValidation !== false) {
|
|
1351
|
+
obj.skipStartBlockValidation = message.skipStartBlockValidation;
|
|
1352
|
+
}
|
|
1336
1353
|
return obj;
|
|
1337
1354
|
},
|
|
1338
1355
|
|
|
@@ -1344,6 +1361,7 @@ export const ExecutionConfig = {
|
|
|
1344
1361
|
message.sequential = object.sequential ?? false;
|
|
1345
1362
|
message.forceExactBlockTime = object.forceExactBlockTime ?? false;
|
|
1346
1363
|
message.processBindingTimeout = object.processBindingTimeout ?? 0;
|
|
1364
|
+
message.skipStartBlockValidation = object.skipStartBlockValidation ?? false;
|
|
1347
1365
|
return message;
|
|
1348
1366
|
},
|
|
1349
1367
|
};
|