2016-09-08 21:13:10 +04:00
|
|
|
(**************************************************************************)
|
|
|
|
(* *)
|
2017-11-14 03:36:14 +04:00
|
|
|
(* Copyright (c) 2014 - 2017. *)
|
2016-09-08 21:13:10 +04:00
|
|
|
(* Dynamic Ledger Solutions, Inc. <contact@tezos.com> *)
|
|
|
|
(* *)
|
|
|
|
(* All rights reserved. No warranty, explicit or implicit, provided. *)
|
|
|
|
(* *)
|
|
|
|
(**************************************************************************)
|
|
|
|
|
|
|
|
(* This is the genesis protocol: initialise the state *)
|
2017-04-10 15:01:22 +04:00
|
|
|
let initialize store =
|
2016-09-08 21:13:10 +04:00
|
|
|
Roll_storage.init store >>=? fun store ->
|
|
|
|
Seed_storage.init store >>=? fun store ->
|
|
|
|
Contract_storage.init store >>=? fun store ->
|
|
|
|
Reward_storage.init store >>=? fun store ->
|
|
|
|
Bootstrap_storage.init store >>=? fun store ->
|
2016-10-26 19:02:10 +04:00
|
|
|
Roll_storage.freeze_rolls_for_cycle
|
2016-09-08 21:13:10 +04:00
|
|
|
store Cycle_repr.root >>=? fun store ->
|
2016-10-26 19:02:10 +04:00
|
|
|
Roll_storage.freeze_rolls_for_cycle
|
2016-09-08 21:13:10 +04:00
|
|
|
store Cycle_repr.(succ root) >>=? fun store ->
|
|
|
|
Vote_storage.init store >>=? fun store ->
|
|
|
|
return store
|
|
|
|
|
2017-04-10 15:01:22 +04:00
|
|
|
let may_initialize ctxt ~level ~timestamp ~fitness =
|
2017-11-16 19:45:22 +04:00
|
|
|
Raw_context.prepare
|
|
|
|
~level ~timestamp ~fitness ctxt >>=? fun (ctxt, first_block) ->
|
2017-04-10 15:01:22 +04:00
|
|
|
if first_block then
|
|
|
|
initialize ctxt
|
|
|
|
else
|
|
|
|
return ctxt
|