Skip to content

Commit

Permalink
Merge branch 'main' into testnet
Browse files Browse the repository at this point in the history
  • Loading branch information
damip committed Sep 16, 2022
2 parents c09e975 + 1feffc9 commit 3275017
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion docs/technical-doc/openrpc.json
Original file line number Diff line number Diff line change
Expand Up @@ -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": {
Expand Down
6 changes: 3 additions & 3 deletions docs/testnet/install.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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 <testnet-running>`.

- `Windows executable <https://github.com/massalabs/massa/releases/download/TEST.14.2/massa_TEST.14.2_release_windows.zip>`_
- `Linux binary <https://github.com/massalabs/massa/releases/download/TEST.14.2/massa_TEST.14.2_release_linux.tar.gz>`_ - only works with libc2.28 at least (for example Ubuntu 20.04 and higher)
- `MacOS binary <https://github.com/massalabs/massa/releases/download/TEST.14.2/massa_TEST.14.2_release_macos.tar.gz>`_
- `Windows executable <https://github.com/massalabs/massa/releases/download/TEST.14.3/massa_TEST.14.3_release_windows.zip>`_
- `Linux binary <https://github.com/massalabs/massa/releases/download/TEST.14.3/massa_TEST.14.3_release_linux.tar.gz>`_ - only works with libc2.28 at least (for example Ubuntu 20.04 and higher)
- `MacOS binary <https://github.com/massalabs/massa/releases/download/TEST.14.3/massa_TEST.14.3_release_macos.tar.gz>`_

From source code
================
Expand Down
4 changes: 2 additions & 2 deletions massa-models/src/config/constants.rs
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ lazy_static::lazy_static! {
if cfg!(feature = "sandbox") {
"SAND.0.0"
} else {
"TEST.14.2"
"TEST.14.3"
}
.parse()
.unwrap()
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit 3275017

Please sign in to comment.