Skip to content

Commit 845af61

Browse files
committed
graphman: enable extended blocks check on deployment run
1 parent 5dbd519 commit 845af61

File tree

1 file changed

+9
-0
lines changed
  • node/src/manager/commands

1 file changed

+9
-0
lines changed

node/src/manager/commands/run.rs

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -105,6 +105,15 @@ pub async fn run(
105105
));
106106
}
107107

108+
provider_checks.push(Arc::new(
109+
graph::components::network_provider::ExtendedBlocksCheck::new(
110+
env_vars
111+
.firehose_disable_extended_blocks_for_chains
112+
.iter()
113+
.map(|x| x.as_str().into()),
114+
),
115+
));
116+
108117
let networks = Networks::from_config(
109118
logger.cheap_clone(),
110119
&config,

0 commit comments

Comments
 (0)