Skip to content

Commit

Permalink
Increase max child accounts limit (helius-labs#252)
Browse files Browse the repository at this point in the history
  • Loading branch information
pmantica11 authored Nov 20, 2024
1 parent 97189d7 commit fcc0ef4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/api/method/get_compressed_accounts_by_owner.rs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ use super::utils::parse_account_model;

// Max filters allowed constant value of 5
const MAX_FILTERS: usize = 5;
const MAX_CHILD_ACCOUNTS_WITH_FILTERS: usize = 100_000;
const MAX_CHILD_ACCOUNTS_WITH_FILTERS: usize = 1_000_000;

#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize, ToSchema, Default)]
#[serde(deny_unknown_fields, rename_all = "camelCase")]
Expand Down

0 comments on commit fcc0ef4

Please sign in to comment.