From 631138fca39a1ea786c5a41b3f5325c535142efd Mon Sep 17 00:00:00 2001 From: Jude Nelson Date: Mon, 3 Jun 2024 18:06:44 -0400 Subject: [PATCH] fix: the number of stacker signer slots is 13 for Nakamoto --- stacks-common/src/libcommon.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stacks-common/src/libcommon.rs b/stacks-common/src/libcommon.rs index fef8f0bba..a8e4036ae 100644 --- a/stacks-common/src/libcommon.rs +++ b/stacks-common/src/libcommon.rs @@ -63,5 +63,5 @@ pub mod consts { /// The number of StackerDB slots each signing key needs /// to use to participate in DKG and block validation signing. - pub const SIGNER_SLOTS_PER_USER: u32 = 14; + pub const SIGNER_SLOTS_PER_USER: u32 = 13; }