b674c538b2
This refactors `src/node/shell/state.ml` in order to trace the source of blocks and operations. This prepares the node for the three-pass validator. In the procces, it adds an in-memory overlay for blocks and operations.
69 lines
2.1 KiB
OCaml
69 lines
2.1 KiB
OCaml
(**************************************************************************)
|
|
(* *)
|
|
(* Copyright (c) 2014 - 2016. *)
|
|
(* Dynamic Ledger Solutions, Inc. <contact@tezos.com> *)
|
|
(* *)
|
|
(* All rights reserved. No warranty, explicit or implicit, provided. *)
|
|
(* *)
|
|
(**************************************************************************)
|
|
|
|
open Hash
|
|
open Error_monad
|
|
include (module type of struct include Kaputt.Assertion end)
|
|
|
|
val is_ok : ?msg:string -> 'a tzresult -> unit
|
|
val is_error : ?msg:string -> 'a tzresult -> unit
|
|
|
|
val fail_msg : ('a, Format.formatter, unit, 'b) format4 -> 'a
|
|
|
|
val fail : string -> string -> ('a, Format.formatter, unit, 'b) format4 -> 'a
|
|
|
|
val equal_persist_list :
|
|
?msg:string -> Persist.key list -> Persist.key list -> unit
|
|
|
|
val equal_block_hash_list :
|
|
?msg:string -> Block_hash.t list -> Block_hash.t list -> unit
|
|
|
|
val equal_string_list :
|
|
?msg:string -> string list -> string list -> unit
|
|
|
|
val equal_string_option : ?msg:string -> string option -> string option -> unit
|
|
|
|
val equal_error_monad :
|
|
?msg:string -> Error_monad.error -> Error_monad.error -> unit
|
|
|
|
val equal_block_set :
|
|
?msg:string -> Block_hash.Set.t -> Block_hash.Set.t -> unit
|
|
|
|
val equal_block_map :
|
|
?msg:string -> eq:('a -> 'a -> bool) ->
|
|
'a Block_hash.Map.t -> 'a Block_hash.Map.t -> unit
|
|
|
|
val equal_operation :
|
|
?msg:string ->
|
|
State.Operation.t option ->
|
|
State.Operation.t option ->
|
|
unit
|
|
|
|
val equal_block :
|
|
?msg:string ->
|
|
Store.Block_header.t option ->
|
|
Store.Block_header.t option ->
|
|
unit
|
|
|
|
val equal_result :
|
|
?msg:string ->
|
|
('a, 'b) result ->
|
|
('a, 'b) result ->
|
|
equal_ok:(?msg:string -> 'a -> 'a -> 'c) ->
|
|
equal_err:(?msg:string -> 'b -> 'b -> 'c) -> 'c
|
|
|
|
val equal_exn : ?msg:string -> exn -> exn -> unit
|
|
|
|
val test_fail :
|
|
?msg:string ->
|
|
?prn:('a -> string) ->
|
|
(unit -> 'a) ->
|
|
(exn -> bool) ->
|
|
unit
|