Increasing limit for number of blocks that could be saved

This commit is contained in:
godmodegalactus 2024-01-29 12:45:13 +01:00
parent 92bf5f84d2
commit e8cebe89fd
No known key found for this signature in database
GPG Key ID: 22DA4A30887FDA3C
1 changed files with 1 additions and 1 deletions

View File

@ -30,7 +30,7 @@ use crate::{
transaction_info::TransactionInfo,
};
const BLOCK_WRITE_BUFFER_SIZE: usize = 5;
const BLOCK_WRITE_BUFFER_SIZE: usize = 256;
const LIMIT_LATEST_TXS_PER_ACCOUNT: i64 = 100;
lazy_static::lazy_static! {