Skip to content

Commit

Permalink
chore: increase MAX_MEM_BLOCK_DEPOSITS and MAX_MEM_BLOCK_WITHDRAWALS …
Browse files Browse the repository at this point in the history
…to 100
  • Loading branch information
jjyr committed May 23, 2022
1 parent 8eefa11 commit b070415
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crates/mem-pool/src/constants.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/// MAX deposits in the mem block
pub const MAX_MEM_BLOCK_DEPOSITS: usize = 50;
pub const MAX_MEM_BLOCK_DEPOSITS: usize = 100;
/// MAX withdrawals in the mem block
pub const MAX_MEM_BLOCK_WITHDRAWALS: usize = 50;
pub const MAX_MEM_BLOCK_WITHDRAWALS: usize = 100;
/// MAX withdrawals in the mem block
pub const MAX_MEM_BLOCK_TXS: usize = 1000;
/// MIN CKB deposit capacity, calculated from custodian cell size
Expand Down

0 comments on commit b070415

Please sign in to comment.