Reset the chain.

This commit is contained in:
Grégoire Henry 2017-11-20 00:12:58 +01:00 committed by Benjamin Canou
parent 667d4fd575
commit c6b4a83e2b
5 changed files with 25 additions and 16 deletions

View File

@ -1,15 +1,19 @@
For the next reset For the next reset
================== ==================
[Alphanet]
- Limit the number of faucet operations at 5 per block.
[Client] [Client]
- Autocomplete scripts for bash. - Autocomplete scripts for bash.
- Smart contracts are now non spendable by default. - Smart contracts are now non spendable by default.
[Node] [Node]
- Prevent potential stack overflow in validation. - Prevent potential stack overflow in validation.
- Fix concurrency issue where operations were cleared from - Fix concurrency issue where operations were cleared from
memory before being used. memory before being used.
@ -17,7 +21,12 @@ For the next reset
- Continue background work on the multipass validator: - Continue background work on the multipass validator:
cleanup and document data structures, better logging cleanup and document data structures, better logging
of resource requests, enhance requests for the same piece 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] [Build]
@ -57,6 +66,14 @@ For the next reset
- Add `SIZE` on lists. - 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 Reset 2017-10-13
================ ================
@ -84,14 +101,6 @@ Reset 2017-09-21
[Node] [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 - fix a performance issue in roll storage
[Doc] [Doc]

View File

@ -1 +1 @@
2017-11-17 2017-11-20

View File

@ -6,7 +6,7 @@
#mod_use "../src/minutils/utils.ml";; #mod_use "../src/minutils/utils.ml";;
#mod_use "../src/utils/base58.ml";; #mod_use "../src/utils/base58.ml";;
let prefix = "BLockGenesisGenesisGenesisGenesisGenesis" let prefix = "BLockGenesisGenesisGenesisGenesisGenesis"
let suffix = "EEEEE" let suffix = "FFFFF"
let p = Base58.raw_decode (prefix ^ suffix ^ "crcCRC") let p = Base58.raw_decode (prefix ^ suffix ^ "crcCRC")
let p = String.sub p 0 (String.length p - 4) let p = String.sub p 0 (String.length p - 4)
let p = Base58.safe_encode p let p = Base58.safe_encode p

View File

@ -11,10 +11,10 @@ open Logging.Node.Main
let genesis : State.Net.genesis = { let genesis : State.Net.genesis = {
time = time =
Time.of_notation_exn "2017-10-17T00:00:00Z" ; Time.of_notation_exn "2017-10-19T00:00:00Z" ;
block = block =
Block_hash.of_b58check_exn Block_hash.of_b58check_exn
"BLockGenesisGenesisGenesisGenesisGenesisEEEEEZmArbf" ; "BLockGenesisGenesisGenesisGenesisGenesisFFFFFgtaC8G" ;
protocol = protocol =
Protocol_hash.of_b58check_exn Protocol_hash.of_b58check_exn
"ProtoGenesisGenesisGenesisGenesisGenesisGenesk612im" ; "ProtoGenesisGenesisGenesisGenesisGenesisGenesk612im" ;

View File

@ -172,7 +172,7 @@ let versions =
let open P2p.Version in let open P2p.Version in
[ { name = "TEZOS" ; [ { name = "TEZOS" ;
major = 0 ; major = 0 ;
minor = 26 ; minor = 27 ;
} }
] ]