We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eebc9ab commit 2a42233Copy full SHA for 2a42233
src/indexer.rs
@@ -78,6 +78,7 @@ impl Indexer {
78
79
let fetcher_config = fetcher::FetcherConfig {
80
num_threads: self.settings.num_threads,
81
+ num_lookahead_threads: self.settings.num_threads,
82
start_block_height: Some(BlockHeight::try_from(start_block_height).unwrap()),
83
end_block_height: None,
84
chain_id,
@@ -89,6 +90,7 @@ impl Indexer {
89
90
user_agent: None,
91
};
92
93
+
94
// Create channel for receiving blocks
95
let (sender, receiver) = mpsc::channel(1000);
96
0 commit comments