2016-10-20 20:54:16 +04:00
|
|
|
(**************************************************************************)
|
|
|
|
(* *)
|
2017-11-14 03:36:14 +04:00
|
|
|
(* Copyright (c) 2014 - 2017. *)
|
2016-10-20 20:54:16 +04:00
|
|
|
(* Dynamic Ledger Solutions, Inc. <contact@tezos.com> *)
|
|
|
|
(* *)
|
|
|
|
(* All rights reserved. No warranty, explicit or implicit, provided. *)
|
|
|
|
(* *)
|
|
|
|
(**************************************************************************)
|
|
|
|
|
|
|
|
type prevalidation_state
|
|
|
|
|
|
|
|
val start_prevalidation :
|
2017-04-27 03:01:05 +04:00
|
|
|
?proto_header: MBytes.t ->
|
2017-11-19 18:15:03 +04:00
|
|
|
?max_number_of_operations: int ->
|
2017-04-19 23:46:10 +04:00
|
|
|
predecessor: State.Block.t ->
|
2016-10-20 20:54:16 +04:00
|
|
|
timestamp: Time.t ->
|
2017-04-27 03:01:05 +04:00
|
|
|
unit -> prevalidation_state tzresult Lwt.t
|
2016-10-20 20:54:16 +04:00
|
|
|
|
|
|
|
val prevalidate :
|
|
|
|
prevalidation_state -> sort:bool ->
|
2017-04-19 21:21:23 +04:00
|
|
|
(Operation_hash.t * Operation.t) list ->
|
2017-11-27 09:13:12 +04:00
|
|
|
(prevalidation_state * error Preapply_result.t) Lwt.t
|
2016-10-20 20:54:16 +04:00
|
|
|
|
|
|
|
val end_prevalidation :
|
2017-04-10 14:14:11 +04:00
|
|
|
prevalidation_state -> Updater.validation_result tzresult Lwt.t
|