ligo/lib_embedded_client_alpha/client_proto_nonces.mli
2017-12-04 19:27:30 +01:00

25 lines
1.0 KiB
OCaml

(**************************************************************************)
(* *)
(* Copyright (c) 2014 - 2017. *)
(* Dynamic Ledger Solutions, Inc. <contact@tezos.com> *)
(* *)
(* All rights reserved. No warranty, explicit or implicit, provided. *)
(* *)
(**************************************************************************)
val mem:
#Client_commands.wallet ->
Block_hash.t -> bool tzresult Lwt.t
val find:
#Client_commands.wallet ->
Block_hash.t -> Nonce.t option tzresult Lwt.t
val add:
#Client_commands.wallet ->
Block_hash.t -> Nonce.t -> unit tzresult Lwt.t
val del:
#Client_commands.wallet ->
Block_hash.t -> unit tzresult Lwt.t
val dels:
#Client_commands.wallet ->
Block_hash.t list -> unit tzresult Lwt.t