From d084b12838f717b25596886dc72e6fc3f8a6cc65 Mon Sep 17 00:00:00 2001 From: Thomas Coratger Date: Thu, 24 Oct 2024 08:13:32 +0200 Subject: [PATCH] primitive-traits: rm ALLOWED_FUTURE_BLOCK_TIME_SECONDS constant --- crates/primitives-traits/src/constants/mod.rs | 9 --------- 1 file changed, 9 deletions(-) diff --git a/crates/primitives-traits/src/constants/mod.rs b/crates/primitives-traits/src/constants/mod.rs index 86bd9349585e..e5096c22e2be 100644 --- a/crates/primitives-traits/src/constants/mod.rs +++ b/crates/primitives-traits/src/constants/mod.rs @@ -90,15 +90,6 @@ pub const OP_SYSTEM_TX_TO_ADDR: Address = address!("4200000000000000000000000000 /// the database. pub const BEACON_CONSENSUS_REORG_UNWIND_DEPTH: u64 = 3; -/// Max seconds from current time allowed for blocks, before they're considered future blocks. -/// -/// This is only used when checking whether or not the timestamp for pre-merge blocks is in the -/// future. -/// -/// See: -/// -pub const ALLOWED_FUTURE_BLOCK_TIME_SECONDS: u64 = 15; - #[cfg(test)] mod tests { use super::*;