Skip to content

Commit

Permalink
Reset keygen and signing timeout to 10
Browse files Browse the repository at this point in the history
The timeouts were decreased for debugging purposes. 
Reverting these values to return to normal.
  • Loading branch information
tbraun96 authored Sep 6, 2023
1 parent 26a09b9 commit c14d9d6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dkg-runtime-primitives/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit c14d9d6

Please sign in to comment.