ligo/lib_embedded_client_alpha/client_proto_nonces.mli

25 lines
1.0 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. *)
(* *)
(**************************************************************************)
val mem:
2017-11-07 20:38:11 +04:00
#Client_commands.wallet ->
Block_hash.t -> bool tzresult Lwt.t
val find:
2017-11-07 20:38:11 +04:00
#Client_commands.wallet ->
Block_hash.t -> Nonce.t option tzresult Lwt.t
val add:
2017-11-07 20:38:11 +04:00
#Client_commands.wallet ->
Block_hash.t -> Nonce.t -> unit tzresult Lwt.t
val del:
2017-11-07 20:38:11 +04:00
#Client_commands.wallet ->
Block_hash.t -> unit tzresult Lwt.t
val dels:
2017-11-07 20:38:11 +04:00
#Client_commands.wallet ->
Block_hash.t list -> unit tzresult Lwt.t