Skip to content

Commit

Permalink
Merge pull request #3371 from zosorock/canary/v0.4.0
Browse files Browse the repository at this point in the history
Updating Canary genesis block with TransmissionID checksum - v0.4.0
  • Loading branch information
zosorock committed Jul 31, 2024
2 parents b0a80c3 + cde921f commit 23baf50
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ default-features = false
[workspace.dependencies.snarkvm]
#path = "../snarkVM"
git = "https://github.com/AleoNet/snarkVM.git"
rev = "68f4f31" # If this is updated, the rev in `node/rest/Cargo.toml` must be updated as well.
rev = "3d8b912" # If this is updated, the rev in `node/rest/Cargo.toml` must be updated as well.
#version = "=0.16.18"
features = [ "circuit", "console", "rocks" ]

Expand Down
2 changes: 1 addition & 1 deletion node/bft/events/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ impl<N: Network> From<DisconnectReason> for Event<N> {

impl<N: Network> Event<N> {
/// The version of the event protocol; it can be incremented in order to force users to update.
pub const VERSION: u32 = 6;
pub const VERSION: u32 = 7;

/// Returns the event name.
#[inline]
Expand Down
2 changes: 1 addition & 1 deletion node/rest/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ version = "=2.2.7"
[dependencies.snarkvm-synthesizer]
#path = "../../../snarkVM/synthesizer"
git = "https://github.com/AleoNet/snarkVM.git"
rev = "68f4f31"
rev = "3d8b912"
default-features = false
optional = true

Expand Down
2 changes: 1 addition & 1 deletion node/router/messages/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ impl<N: Network> From<DisconnectReason> for Message<N> {

impl<N: Network> Message<N> {
/// The version of the network protocol; it can be incremented in order to force users to update.
pub const VERSION: u32 = 15;
pub const VERSION: u32 = 16;

/// Returns the message name.
#[inline]
Expand Down

0 comments on commit 23baf50

Please sign in to comment.