ligo/lib_embedded_protocol_alpha/src/init_storage.ml

31 lines
1.3 KiB
OCaml
Raw Normal View History

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 *)
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
let may_initialize ctxt ~level ~timestamp ~fitness =
Raw_context.prepare
~level ~timestamp ~fitness ctxt >>=? fun (ctxt, first_block) ->
if first_block then
initialize ctxt
else
return ctxt