diff --git a/coordinator/tributary/src/tendermint/mod.rs b/coordinator/tributary/src/tendermint/mod.rs index dc62c798..f4657662 100644 --- a/coordinator/tributary/src/tendermint/mod.rs +++ b/coordinator/tributary/src/tendermint/mod.rs @@ -273,8 +273,8 @@ pub struct TendermintNetwork { pub(crate) p2p: P, } -pub const BLOCK_PROCESSING_TIME: u32 = 999; -pub const LATENCY_TIME: u32 = 1667; +pub const BLOCK_PROCESSING_TIME: u32 = 1000; +pub const LATENCY_TIME: u32 = 3000; pub const TARGET_BLOCK_TIME: u32 = BLOCK_PROCESSING_TIME + (3 * LATENCY_TIME); #[test] @@ -307,7 +307,7 @@ impl Network for TendermintNetwork type Weights = Arc; type Block = TendermintBlock; - // These are in milliseconds and create a six-second block time. + // These are in milliseconds and create a ten-second block time. // The block time is the latency on message delivery (where a message is some piece of data // embedded in a transaction) times three plus the block processing time, hence why it should be // kept low.