Skip to content

Commit 6d7de20

Browse files
author
Ludo Galabru
committed
fix: bounded channel
1 parent 8253524 commit 6d7de20

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

components/ordhook-core/src/core/protocol/inscription_sequencing.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ use chainhook_sdk::{
1212
},
1313
utils::Context,
1414
};
15-
use crossbeam_channel::bounded;
15+
use crossbeam_channel::unbounded;
1616
use dashmap::DashMap;
1717
use fxhash::FxHasher;
1818
use rusqlite::{Connection, Transaction};
@@ -98,7 +98,7 @@ pub fn parallelize_inscription_data_computations(
9898
}
9999

100100
let expected_traversals = transactions_ids.len() + l1_cache_hits.len();
101-
let (traversal_tx, traversal_rx) = bounded(64);
101+
let (traversal_tx, traversal_rx) = unbounded();
102102

103103
let mut tx_thread_pool = vec![];
104104
let mut thread_pool_handles = vec![];

0 commit comments

Comments
 (0)