Mavryk_raw_protocol_alpha.Voting_period_storage
val init :
Raw_context.t ->
Voting_period_repr.t ->
Raw_context.t Mavryk_protocol_environment_alpha.Error_monad.tzresult
Mavryk_protocol_environment_alpha.Lwt.t
Initializes the current context with voting period information.
val init_first_period :
Raw_context.t ->
start_position:Mavryk_protocol_environment_alpha.Int32.t ->
Raw_context.t Mavryk_protocol_environment_alpha.Error_monad.tzresult
Mavryk_protocol_environment_alpha.Lwt.t
Sets the initial period to {voting_period = root; kind = Proposal;
start_position}
.
val reset :
Raw_context.t ->
Raw_context.t Mavryk_protocol_environment_alpha.Error_monad.tzresult
Mavryk_protocol_environment_alpha.Lwt.t
Increment the index by one and set the kind to Proposal.
val succ :
Raw_context.t ->
Raw_context.t Mavryk_protocol_environment_alpha.Error_monad.tzresult
Mavryk_protocol_environment_alpha.Lwt.t
Increment the index by one and set the kind to its successor.
val get_current :
Raw_context.t ->
Voting_period_repr.t Mavryk_protocol_environment_alpha.Error_monad.tzresult
Mavryk_protocol_environment_alpha.Lwt.t
Returns information about the current voting period.
val get_current_kind :
Raw_context.t ->
Voting_period_repr.kind
Mavryk_protocol_environment_alpha.Error_monad.tzresult
Mavryk_protocol_environment_alpha.Lwt.t
Returns the current voting period kind.
val is_last_block :
Raw_context.t ->
bool Mavryk_protocol_environment_alpha.Error_monad.tzresult
Mavryk_protocol_environment_alpha.Lwt.t
Returns true if the context level is the last of current voting period.
val blocks_before_activation :
Raw_context.t ->
int32 option Mavryk_protocol_environment_alpha.Error_monad.tzresult
Mavryk_protocol_environment_alpha.Lwt.t
blocks_before_activation ctxt
returns Some b
if the current voting period is the Adoption and b
blocks must be waited before activation of the next protocol amendment. Returns None
if the current period is not Adoption (then more than Constants_storage.blocks_per_voting_period
must be waited before activation).
val get_rpc_current_info :
Raw_context.t ->
Voting_period_repr.info
Mavryk_protocol_environment_alpha.Error_monad.tzresult
Mavryk_protocol_environment_alpha.Lwt.t
Returns the voting period information for the current level.
val get_rpc_succ_info :
Raw_context.t ->
Voting_period_repr.info
Mavryk_protocol_environment_alpha.Error_monad.tzresult
Mavryk_protocol_environment_alpha.Lwt.t
Returns the voting period information for the next level.
module Testnet_dictator : sig ... end