From c14d9d63ae0681ad9340828710e5f94ce9317c5f Mon Sep 17 00:00:00 2001 From: Thomas Braun <38082993+tbraun96@users.noreply.github.com> Date: Wed, 6 Sep 2023 07:58:13 -0400 Subject: [PATCH] Reset keygen and signing timeout to 10 The timeouts were decreased for debugging purposes. Reverting these values to return to normal. --- dkg-runtime-primitives/src/lib.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dkg-runtime-primitives/src/lib.rs b/dkg-runtime-primitives/src/lib.rs index 150ed506c..ee78f39ce 100644 --- a/dkg-runtime-primitives/src/lib.rs +++ b/dkg-runtime-primitives/src/lib.rs @@ -83,10 +83,10 @@ pub type MmrRootHash = H256; pub const GENESIS_AUTHORITY_SET_ID: u64 = 0; /// The keygen timeout limit in blocks before we consider misbehaviours -pub const KEYGEN_TIMEOUT: u32 = 3; +pub const KEYGEN_TIMEOUT: u32 = 10; /// The sign timeout limit in blocks before we consider proposal as stalled -pub const SIGN_TIMEOUT: u32 = 3; +pub const SIGN_TIMEOUT: u32 = 10; /// So long as the associated block id is within this tolerance, we consider the message as /// deliverable. This should be less than the SIGN_TIMEOUT