Reset the chain
This commit is contained in:
parent
72c414aaeb
commit
529795efd7
@ -84,6 +84,14 @@ 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]
|
||||||
|
@ -1 +1 @@
|
|||||||
2017-10-13
|
2017-11-17
|
||||||
|
@ -1,6 +1,12 @@
|
|||||||
|
#use "topfind";;
|
||||||
|
#require "stringext";;
|
||||||
|
#require "lwt";;
|
||||||
|
#require "zarith";;
|
||||||
|
#require "nocrypto";;
|
||||||
|
#mod_use "../src/minutils/utils.ml";;
|
||||||
|
#mod_use "../src/utils/base58.ml";;
|
||||||
let prefix = "BLockGenesisGenesisGenesisGenesisGenesis"
|
let prefix = "BLockGenesisGenesisGenesisGenesisGenesis"
|
||||||
let suffix = "DDDDD"
|
let suffix = "EEEEE"
|
||||||
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
|
||||||
|
@ -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-13T00:00:00Z" ;
|
Time.of_notation_exn "2017-10-17T00:00:00Z" ;
|
||||||
block =
|
block =
|
||||||
Block_hash.of_b58check_exn
|
Block_hash.of_b58check_exn
|
||||||
"BLockGenesisGenesisGenesisGenesisGenesisDDDDDegibDt" ;
|
"BLockGenesisGenesisGenesisGenesisGenesisEEEEEZmArbf" ;
|
||||||
protocol =
|
protocol =
|
||||||
Protocol_hash.of_b58check_exn
|
Protocol_hash.of_b58check_exn
|
||||||
"ProtoGenesisGenesisGenesisGenesisGenesisGenesk612im" ;
|
"ProtoGenesisGenesisGenesisGenesisGenesisGenesk612im" ;
|
||||||
|
@ -174,7 +174,7 @@ let versions =
|
|||||||
let open P2p.Version in
|
let open P2p.Version in
|
||||||
[ { name = "TEZOS" ;
|
[ { name = "TEZOS" ;
|
||||||
major = 0 ;
|
major = 0 ;
|
||||||
minor = 25 ;
|
minor = 26 ;
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user