Skip to content

Commit

Permalink
chore(mem-pool): restore max deposit/withdraw
Browse files Browse the repository at this point in the history
  • Loading branch information
zeroqn committed Mar 4, 2022
1 parent 0a555d1 commit 67191e8
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 = 20;
pub const MAX_MEM_BLOCK_DEPOSITS: usize = 50;
/// MAX withdrawals in the mem block
pub const MAX_MEM_BLOCK_WITHDRAWALS: usize = 20;
pub const MAX_MEM_BLOCK_WITHDRAWALS: usize = 50;
/// MAX withdrawals in the mem block
pub const MAX_MEM_BLOCK_TXS: usize = 1000;
/// MAX tx size 50 KB
Expand Down

0 comments on commit 67191e8

Please sign in to comment.