From 2f0ce27d6127012349023f5b91dcb19ce44a353b Mon Sep 17 00:00:00 2001 From: AurelienFT Date: Fri, 16 Sep 2022 20:34:36 +0200 Subject: [PATCH 1/2] Fix bootstrap --- massa-models/src/config/constants.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/massa-models/src/config/constants.rs b/massa-models/src/config/constants.rs index 56af8061d01..d1f7d2dede3 100644 --- a/massa-models/src/config/constants.rs +++ b/massa-models/src/config/constants.rs @@ -157,7 +157,7 @@ pub const MAX_BOOTSTRAP_POS_ENTRIES: u32 = 1000000000; /// Max async pool changes pub const MAX_BOOTSTRAP_ASYNC_POOL_CHANGES: u64 = 100_000; /// Max bytes in final states parts -pub const MAX_BOOTSTRAP_FINAL_STATE_PARTS_SIZE: u64 = 10_000_000; +pub const MAX_BOOTSTRAP_FINAL_STATE_PARTS_SIZE: u64 = 1_000_000_000; /// Max size of the IP list pub const IP_LIST_MAX_SIZE: usize = 10000; /// Size of the random bytes array used for the bootstrap, safe to import From 3b8f0b2966d02a7b702fe2454ce38e814737a4b7 Mon Sep 17 00:00:00 2001 From: AurelienFT Date: Fri, 16 Sep 2022 20:36:14 +0200 Subject: [PATCH 2/2] Upgrade version. --- docs/technical-doc/openrpc.json | 2 +- docs/testnet/install.rst | 6 +++--- massa-models/src/config/constants.rs | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/technical-doc/openrpc.json b/docs/technical-doc/openrpc.json index b75ed3382f5..87054d65424 100644 --- a/docs/technical-doc/openrpc.json +++ b/docs/technical-doc/openrpc.json @@ -2,7 +2,7 @@ "openrpc": "1.2.4", "info": { "title": "Massa OpenRPC", - "version": "TEST.14.2", + "version": "TEST.14.3", "description": "Massa OpenRPC spec", "termsOfService": "https://open-rpc.org", "contact": { diff --git a/docs/testnet/install.rst b/docs/testnet/install.rst index 01fc313c75b..24dbac15f49 100644 --- a/docs/testnet/install.rst +++ b/docs/testnet/install.rst @@ -14,9 +14,9 @@ From binaries If you just wish to run a Massa node without compiling it yourself, you can simply download the latest binary below and go the the next step: :ref:`Running a node `. -- `Windows executable `_ -- `Linux binary `_ - only works with libc2.28 at least (for example Ubuntu 20.04 and higher) -- `MacOS binary `_ +- `Windows executable `_ +- `Linux binary `_ - only works with libc2.28 at least (for example Ubuntu 20.04 and higher) +- `MacOS binary `_ From source code ================ diff --git a/massa-models/src/config/constants.rs b/massa-models/src/config/constants.rs index d1f7d2dede3..e56c1baa6bb 100644 --- a/massa-models/src/config/constants.rs +++ b/massa-models/src/config/constants.rs @@ -64,7 +64,7 @@ lazy_static::lazy_static! { if cfg!(feature = "sandbox") { "SAND.0.0" } else { - "TEST.14.2" + "TEST.14.3" } .parse() .unwrap()