@sentio/runtime 2.32.10 → 2.33.0-rc.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,13 +1,14 @@
1
1
  import { ExecutionConfig } from './gen/processor/protos/processor.js'
2
2
 
3
3
  export interface GlobalConfig {
4
- execution: ExecutionConfig
4
+ execution: Partial<ExecutionConfig>
5
5
  }
6
6
 
7
7
  // Experimental global config, only apply to eth for now
8
8
  export const GLOBAL_CONFIG: GlobalConfig = {
9
9
  execution: {
10
- sequential: false
10
+ sequential: false,
11
+ forceExactBlockTime: false
11
12
  }
12
13
  }
13
14