Skip to content

Commit dc5cd78

Browse files
committed
Point to the correct 3.1.0.0.13 release
Signed-off-by: Jacinta Ferrant <jacinta.ferrant@gmail.com>
1 parent 20f61b2 commit dc5cd78

File tree

4 files changed

+35
-36
lines changed

4 files changed

+35
-36
lines changed

Cargo.lock

Lines changed: 29 additions & 29 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

stacks-signer/src/chainstate/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -425,7 +425,7 @@ impl SortitionData {
425425
pub enum SortitionStateVersion {
426426
/// Version 1: Local Signer State evaluation only
427427
V1,
428-
/// Version 2: Global Siner State evaluation
428+
/// Version 2: Global Signer State evaluation
429429
V2,
430430
}
431431

stackslib/src/chainstate/burn/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ impl SortitionHash {
140140

141141
/// Choose two indices (without replacement) from the range [0, max).
142142
pub fn choose_two(&self, max: u32) -> Vec<u32> {
143-
let mut rng = ChaCha20Rng::from_seed(self.0);
143+
let mut rng = ChaCha20Rng::from_seed(self.0.clone());
144144
if max < 2 {
145145
return (0..max).collect();
146146
}

testnet/stacks-node/Cargo.toml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -33,11 +33,10 @@ http-types = { version = "2.12", optional = true }
3333
thiserror = { workspace = true }
3434

3535
# This dependency is used for the multiversion integration tests which live behind the build-v3-1-0-0-13 feature flag
36-
# TODO: update the rev commit to the tagged master commit once v3_1_00_13 is released.
37-
signer_v3_1_0_0_13 = { package = "stacks-signer", git = "https://github.com/stacks-network/stacks-core.git", rev="0fa1ff3ba65d4ee5c54d398f7086bcaf9e6ae532", optional = true, features = ["testing", "default"]}
38-
libsigner_v3_1_0_0_13 = { package = "libsigner", git = "https://github.com/stacks-network/stacks-core.git", rev="0fa1ff3ba65d4ee5c54d398f7086bcaf9e6ae532", optional = true}
39-
stacks_v3_1_00_13 = { package = "stackslib", git = "https://github.com/stacks-network/stacks-core.git", rev="0fa1ff3ba65d4ee5c54d398f7086bcaf9e6ae532", optional = true, features = ["testing", "default"]}
40-
stacks_common_v3_1_00_13 = { package = "stacks-common", git = "https://github.com/stacks-network/stacks-core.git", rev="0fa1ff3ba65d4ee5c54d398f7086bcaf9e6ae532", optional = true, features = ["testing", "default"]}
36+
signer_v3_1_0_0_13 = { package = "stacks-signer", git = "https://github.com/stacks-network/stacks-core.git", rev="8a79aaa7df0f13dfc5ab0d0d0bcb8201c90bcba2", optional = true, features = ["testing", "default"]}
37+
libsigner_v3_1_0_0_13 = { package = "libsigner", git = "https://github.com/stacks-network/stacks-core.git", rev="8a79aaa7df0f13dfc5ab0d0d0bcb8201c90bcba2", optional = true}
38+
stacks_v3_1_00_13 = { package = "stackslib", git = "https://github.com/stacks-network/stacks-core.git", rev="8a79aaa7df0f13dfc5ab0d0d0bcb8201c90bcba2", optional = true, features = ["testing", "default"]}
39+
stacks_common_v3_1_00_13 = { package = "stacks-common", git = "https://github.com/stacks-network/stacks-core.git", rev="8a79aaa7df0f13dfc5ab0d0d0bcb8201c90bcba2", optional = true, features = ["testing", "default"]}
4140
[target.'cfg(not(any(target_os = "macos", target_os="windows", target_arch = "arm")))'.dependencies]
4241
tikv-jemallocator = {workspace = true}
4342

0 commit comments

Comments
 (0)