Skip to content

Commit

Permalink
increase writeable accounts cost hashmap size (#3009)
Browse files Browse the repository at this point in the history
  • Loading branch information
bw-solana authored Sep 27, 2024
1 parent 690fad0 commit 9f822c2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cost-model/src/cost_tracker.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ use {
std::{cmp::Ordering, collections::HashMap},
};

const WRITABLE_ACCOUNTS_PER_BLOCK: usize = 512;
const WRITABLE_ACCOUNTS_PER_BLOCK: usize = 4096;

#[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub enum CostTrackerError {
Expand Down

0 comments on commit 9f822c2

Please sign in to comment.