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