Skip to content

Commit

Permalink
increasing size of accounts broadcast channel
Browse files Browse the repository at this point in the history
  • Loading branch information
godmodegalactus committed Nov 5, 2024
1 parent 7d649b1 commit 409de09
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/autobahn-router/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ async fn main() -> anyhow::Result<()> {
let (metadata_write_sender, metadata_write_receiver) =
async_channel::unbounded::<FeedMetadata>();
let (slot_sender, slot_receiver) = async_channel::unbounded::<SlotUpdate>();
let (account_update_sender, _) = broadcast::channel(1048576); // TODO this is huge, but init snapshot will completely spam this
let (account_update_sender, _) = broadcast::channel(4 * 1024 * 1024); // TODO this is huge, but init snapshot will completely spam this

let chain_data = Arc::new(RwLock::new(ChainData::new()));
start_chaindata_updating(
Expand Down

0 comments on commit 409de09

Please sign in to comment.