From c6b4a83e2b7d320e72ce2499e6f0aaf79470ba2e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gr=C3=A9goire=20Henry?= Date: Mon, 20 Nov 2017 00:12:58 +0100 Subject: [PATCH] Reset the chain. --- CHANGES.alphanet | 31 +++++++++++++++--------- scripts/alphanet_version | 2 +- scripts/gen_genesis.ml | 2 +- src/node/main/node_run_command.ml | 4 +-- src/node/shell/distributed_db_message.ml | 2 +- 5 files changed, 25 insertions(+), 16 deletions(-) diff --git a/CHANGES.alphanet b/CHANGES.alphanet index 8971b826e..465650cde 100644 --- a/CHANGES.alphanet +++ b/CHANGES.alphanet @@ -1,15 +1,19 @@ For the next reset ================== +[Alphanet] + +- Limit the number of faucet operations at 5 per block. + [Client] - - Autocomplete scripts for bash. +- Autocomplete scripts for bash. - Smart contracts are now non spendable by default. [Node] - - Prevent potential stack overflow in validation. +- Prevent potential stack overflow in validation. - Fix concurrency issue where operations were cleared from memory before being used. @@ -17,7 +21,12 @@ For the next reset - Continue background work on the multipass validator: cleanup and document data structures, better logging of resource requests, enhance requests for the same piece - of data to multiple peers. + of data to multiple peers, split the code in smaller + simpler components. + +- P2p: fix issue with data greater than 2^16 bytes + +- Irmin: use an experimental LevelDB backend [Build] @@ -57,6 +66,14 @@ For the next reset - Add `SIZE` on lists. +Reset 2017-11-17 +================ + +[Node] + +- P2p: fix issue with data greater then 2^16 bytes +- Irmin: restore usage `git-repack`... (mistakenly removed) + Reset 2017-10-13 ================ @@ -84,14 +101,6 @@ Reset 2017-09-21 [Node] -- P2p: fix issue with data greater then 2^16 bytes -- Irmin: restore usage `git-repack`... (mistakenly removed) - -Reset 2017-09-21 -================ - -[Node] - - fix a performance issue in roll storage [Doc] diff --git a/scripts/alphanet_version b/scripts/alphanet_version index 06a78ca17..c6afdbb72 100644 --- a/scripts/alphanet_version +++ b/scripts/alphanet_version @@ -1 +1 @@ -2017-11-17 +2017-11-20 diff --git a/scripts/gen_genesis.ml b/scripts/gen_genesis.ml index c66b75fec..c352c869f 100644 --- a/scripts/gen_genesis.ml +++ b/scripts/gen_genesis.ml @@ -6,7 +6,7 @@ #mod_use "../src/minutils/utils.ml";; #mod_use "../src/utils/base58.ml";; let prefix = "BLockGenesisGenesisGenesisGenesisGenesis" -let suffix = "EEEEE" +let suffix = "FFFFF" let p = Base58.raw_decode (prefix ^ suffix ^ "crcCRC") let p = String.sub p 0 (String.length p - 4) let p = Base58.safe_encode p diff --git a/src/node/main/node_run_command.ml b/src/node/main/node_run_command.ml index 89b87bd44..e688e78f7 100644 --- a/src/node/main/node_run_command.ml +++ b/src/node/main/node_run_command.ml @@ -11,10 +11,10 @@ open Logging.Node.Main let genesis : State.Net.genesis = { time = - Time.of_notation_exn "2017-10-17T00:00:00Z" ; + Time.of_notation_exn "2017-10-19T00:00:00Z" ; block = Block_hash.of_b58check_exn - "BLockGenesisGenesisGenesisGenesisGenesisEEEEEZmArbf" ; + "BLockGenesisGenesisGenesisGenesisGenesisFFFFFgtaC8G" ; protocol = Protocol_hash.of_b58check_exn "ProtoGenesisGenesisGenesisGenesisGenesisGenesk612im" ; diff --git a/src/node/shell/distributed_db_message.ml b/src/node/shell/distributed_db_message.ml index 992a6d06c..fd729f4f8 100644 --- a/src/node/shell/distributed_db_message.ml +++ b/src/node/shell/distributed_db_message.ml @@ -172,7 +172,7 @@ let versions = let open P2p.Version in [ { name = "TEZOS" ; major = 0 ; - minor = 26 ; + minor = 27 ; } ]