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,6 +1,10 @@
For the next reset
==================
[Alphanet]
- Limit the number of faucet operations at 5 per block.
[Client]
- Autocomplete scripts for bash.
@ -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]

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/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

View File

@ -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" ;

View File

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