ligo/src/lib_base/operation.mli

23 lines
903 B
OCaml
Raw Normal View History

2016-11-29 00:54:32 +04:00
(**************************************************************************)
(* *)
2017-11-14 03:36:14 +04:00
(* Copyright (c) 2014 - 2017. *)
2016-11-29 00:54:32 +04:00
(* Dynamic Ledger Solutions, Inc. <contact@tezos.com> *)
(* *)
(* All rights reserved. No warranty, explicit or implicit, provided. *)
(* *)
(**************************************************************************)
type shell_header = {
branch: Block_hash.t ;
}
val shell_header_encoding: shell_header Data_encoding.t
2017-01-14 16:13:59 +04:00
type t = {
shell: shell_header ;
proto: MBytes.t ;
2017-01-14 16:13:59 +04:00
}
include S.HASHABLE with type t := t
and type hash := Operation_hash.t
val of_bytes_exn: MBytes.t -> t