Skip to content

Commit 0f8b661

Browse files
committed
chore: disable stackerdb encrypted state to make dkg and adjacent CI tests pass
1 parent 5d9f472 commit 0f8b661

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

stacks-signer/src/v1/signer.rs

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1426,19 +1426,21 @@ impl Signer {
14261426
) -> Result<(), PersistenceError> {
14271427
self.signer_db
14281428
.insert_encrypted_signer_state(self.reward_cycle, encrypted_state)?;
1429-
14301429
Ok(())
14311430
}
14321431

14331432
/// Persist signer state in StackerDB
1433+
/// TODO: this is a no-op until the number of signer slots can be expanded
14341434
fn save_signer_state_in_stackerdb(
14351435
&mut self,
1436-
encrypted_state: Vec<u8>,
1436+
_encrypted_state: Vec<u8>,
14371437
) -> Result<(), PersistenceError> {
1438+
/*
1439+
* This is a no-op until the number of signer slots can be expanded to 14
1440+
*
14381441
let message = SignerMessage::EncryptedSignerState(encrypted_state);
1439-
14401442
self.stackerdb.send_message_with_retry(message)?;
1441-
1443+
*/
14421444
Ok(())
14431445
}
14441446

0 commit comments

Comments
 (0)