Skip to content

Activate signer state machine by upgrading SUPPORTED_SIGNER_PROTOCOL_VERSION to 2 #6281

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 5 commits into
base: develop
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions stacks-signer/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,13 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to the versioning scheme outlined in the [README.md](README.md).


## [Unreleased]

### Changed

- Upgraded `SUPPORTED_SIGNER_PROTOCOL_VERSION` to 2, activating global signer state agreement block processing.

## [3.2.0.0.0.0]

### Added
Expand Down
2 changes: 1 addition & 1 deletion stacks-signer/src/v0/signer_state.rs
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ use crate::client::{ClientError, CurrentAndLastSortition, StackerDB, StacksClien
use crate::signerdb::{BlockValidatedByReplaySet, SignerDb};

/// This is the latest supported protocol version for this signer binary
pub static SUPPORTED_SIGNER_PROTOCOL_VERSION: u64 = 1;
pub static SUPPORTED_SIGNER_PROTOCOL_VERSION: u64 = 2;
/// The version at which global signer state activates
pub static GLOBAL_SIGNER_STATE_ACTIVATION_VERSION: u64 = u64::MAX;

Expand Down
Loading