From 7d1e0746836d6873ee263c2c60bc012033793bed Mon Sep 17 00:00:00 2001 From: Stephen Akridge Date: Fri, 22 Jun 2018 10:45:14 -0700 Subject: [PATCH] bump last_ids --- src/bank.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bank.rs b/src/bank.rs index 4c1d43a20e..2f90b8033c 100644 --- a/src/bank.rs +++ b/src/bank.rs @@ -28,7 +28,7 @@ use timing::duration_as_us; /// but requires clients to update its `last_id` more frequently. Raising the value /// lengthens the time a client must wait to be certain a missing transaction will /// not be processed by the network. -pub const MAX_ENTRY_IDS: usize = 1024 * 4; +pub const MAX_ENTRY_IDS: usize = 1024 * 16; /// Reasons a transaction might be rejected. #[derive(Debug, PartialEq, Eq)]