Skip to content

Commit

Permalink
chore(pruner): set default timeout to None on PrunerBuilder (#8181)
Browse files Browse the repository at this point in the history
  • Loading branch information
joshieDo authored May 9, 2024
1 parent 539c702 commit 4bbc850
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/prune/src/builder.rs
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ impl Default for PrunerBuilder {
segments: PruneModes::none(),
max_reorg_depth: 64,
prune_delete_limit: MAINNET.prune_delete_limit,
timeout: Some(Self::DEFAULT_TIMEOUT),
timeout: None,
finished_exex_height: watch::channel(FinishedExExHeight::NoExExs).1,
}
}
Expand Down

0 comments on commit 4bbc850

Please sign in to comment.