reduce LIMIT_LATEST_TXS_PER_ACCOUNT to 100

This commit is contained in:
GroovieGermanikus 2024-01-11 18:14:54 +01:00
parent fbfef4db06
commit 348c454780
No known key found for this signature in database
GPG Key ID: 5B6EB831A5CD2015
1 changed files with 1 additions and 1 deletions

View File

@ -30,7 +30,7 @@ use crate::{
};
const BLOCK_WRITE_BUFFER_SIZE: usize = 5;
const LIMIT_LATEST_TXS_PER_ACCOUNT: i64 = 1000;
const LIMIT_LATEST_TXS_PER_ACCOUNT: i64 = 100;
pub struct TempTableTracker {
count: AtomicU64,