From 4b0b65b75e0ac441d6367105c3b29df93f8a2cd6 Mon Sep 17 00:00:00 2001 From: Fabiano Date: Tue, 30 Jul 2024 20:04:27 -0400 Subject: [PATCH 1/2] Updating snarkVM rev and bumping versions Signed-off-by: Fabiano --- Cargo.toml | 2 +- node/bft/events/src/lib.rs | 2 +- node/router/messages/src/lib.rs | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 9ee87eaf64..03c3ef4143 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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" ] diff --git a/node/bft/events/src/lib.rs b/node/bft/events/src/lib.rs index a0d2b1d795..e69da87caf 100644 --- a/node/bft/events/src/lib.rs +++ b/node/bft/events/src/lib.rs @@ -117,7 +117,7 @@ impl From for Event { impl Event { /// 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] diff --git a/node/router/messages/src/lib.rs b/node/router/messages/src/lib.rs index 66a3ddd5ce..4e3b807b24 100644 --- a/node/router/messages/src/lib.rs +++ b/node/router/messages/src/lib.rs @@ -111,7 +111,7 @@ impl From for Message { impl Message { /// 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] From cde921fa5236520a420485915e5b4bd1023f8af0 Mon Sep 17 00:00:00 2001 From: Fabiano Date: Tue, 30 Jul 2024 21:22:36 -0400 Subject: [PATCH 2/2] update rev for rest api server Signed-off-by: Fabiano --- node/rest/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/node/rest/Cargo.toml b/node/rest/Cargo.toml index f644ea11c6..8395cdd86b 100644 --- a/node/rest/Cargo.toml +++ b/node/rest/Cargo.toml @@ -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