From bcb55135936e2a4be02f37d3595a46cbaef3586f Mon Sep 17 00:00:00 2001 From: damip Date: Sun, 9 Jan 2022 19:16:44 +0100 Subject: [PATCH] prepare_6.3 --- massa-consensus/src/settings.rs | 2 +- massa-execution/src/spec.md | 2 +- massa-node/src/settings.rs | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/massa-consensus/src/settings.rs b/massa-consensus/src/settings.rs index e30e1ab791a..52eca6d82c3 100644 --- a/massa-consensus/src/settings.rs +++ b/massa-consensus/src/settings.rs @@ -23,7 +23,7 @@ lazy_static::lazy_static! { pub static ref GENESIS_TIMESTAMP: MassaTime = if cfg!(feature = "test") { MassaTime::now().unwrap().saturating_add(MassaTime::from(1000 * 60 * 3)) } else { - 1641744000000.into() + 1641754800000.into() }; /// TESTNET: time when the blockclique is ended. diff --git a/massa-execution/src/spec.md b/massa-execution/src/spec.md index e7d5bddb50e..b2dc54ebe6e 100644 --- a/massa-execution/src/spec.md +++ b/massa-execution/src/spec.md @@ -35,7 +35,7 @@ fn _call(shared_env: &SharedExecutionContext, addr: Address, func_name: String, // update context (*exec_context_guard).max_gas = max_gas; - (*exec_context_guard).coins = Amount::from_raw(0); // TODO maybe allow sending coins in the call + (*exec_context_guard).coins = AMOUNT_ZERO; // TODO maybe allow sending coins in the call (*exec_context_guard).call_stack.push_back(addr); } diff --git a/massa-node/src/settings.rs b/massa-node/src/settings.rs index 8bac3538c88..67681c4e5da 100644 --- a/massa-node/src/settings.rs +++ b/massa-node/src/settings.rs @@ -14,7 +14,7 @@ use massa_protocol_exports::ProtocolSettings; use serde::Deserialize; lazy_static::lazy_static! { - pub static ref VERSION: Version = "TEST.6.2".parse().unwrap(); + pub static ref VERSION: Version = "TEST.6.3".parse().unwrap(); // TODO: this code is duplicated from /massa-client/settings.rs and should be part of a custom crate pub static ref SETTINGS: Settings = { let mut settings = config::Config::default();