ligo/src/proto_alpha/lib_client/client_proto_nonces.mli

28 lines
1.0 KiB
OCaml
Raw Normal View History

2016-09-08 21:13:10 +04:00
(**************************************************************************)
(* *)
2018-02-06 00:17:03 +04:00
(* Copyright (c) 2014 - 2018. *)
2016-09-08 21:13:10 +04:00
(* Dynamic Ledger Solutions, Inc. <contact@tezos.com> *)
(* *)
(* All rights reserved. No warranty, explicit or implicit, provided. *)
(* *)
(**************************************************************************)
open Proto_alpha
open Tezos_context
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