File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -335,7 +335,7 @@ fn async_main() -> impl Future<Item = (), Error = ()> + Send + 'static {
335
335
debug ! ( logger, "Setting up Sentry" ) ;
336
336
337
337
// Obtain DISABLE_BLOCK_INGESTOR setting
338
- let disable_block_ingestor = matches
338
+ let disable_block_ingestor: bool = matches
339
339
. value_of ( "disable-block-ingestor" )
340
340
. unwrap ( )
341
341
. parse ( )
@@ -524,7 +524,7 @@ fn async_main() -> impl Future<Item = (), Error = ()> + Send + 'static {
524
524
let mut subscription_server =
525
525
GraphQLSubscriptionServer :: new ( & logger, graphql_runner. clone ( ) , generic_store. clone ( ) ) ;
526
526
527
- if disable_block_ingestor {
527
+ if ! disable_block_ingestor {
528
528
// BlockIngestor must be configured to keep at least REORG_THRESHOLD ancestors,
529
529
// otherwise BlockStream will not work properly.
530
530
// BlockStream expects the blocks after the reorg threshold to be present in the
You can’t perform that action at this time.
0 commit comments