We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8253524 commit 6d7de20Copy full SHA for 6d7de20
components/ordhook-core/src/core/protocol/inscription_sequencing.rs
@@ -12,7 +12,7 @@ use chainhook_sdk::{
12
},
13
utils::Context,
14
};
15
-use crossbeam_channel::bounded;
+use crossbeam_channel::unbounded;
16
use dashmap::DashMap;
17
use fxhash::FxHasher;
18
use rusqlite::{Connection, Transaction};
@@ -98,7 +98,7 @@ pub fn parallelize_inscription_data_computations(
98
}
99
100
let expected_traversals = transactions_ids.len() + l1_cache_hits.len();
101
- let (traversal_tx, traversal_rx) = bounded(64);
+ let (traversal_tx, traversal_rx) = unbounded();
102
103
let mut tx_thread_pool = vec![];
104
let mut thread_pool_handles = vec![];
0 commit comments