2016-11-28 21:54:32 +01:00
|
|
|
(**************************************************************************)
|
|
|
|
(* *)
|
2018-02-05 21:17:03 +01:00
|
|
|
(* Copyright (c) 2014 - 2018. *)
|
2016-11-28 21:54:32 +01:00
|
|
|
(* Dynamic Ledger Solutions, Inc. <contact@tezos.com> *)
|
|
|
|
(* *)
|
|
|
|
(* All rights reserved. No warranty, explicit or implicit, provided. *)
|
|
|
|
(* *)
|
|
|
|
(**************************************************************************)
|
|
|
|
|
2018-02-08 10:51:01 +01:00
|
|
|
include Blake2B.Make (Tezos_crypto.Base58) (struct
|
2017-11-27 06:13:12 +01:00
|
|
|
let name = "Protocol_hash"
|
|
|
|
let title = "A Tezos protocol ID"
|
2018-02-08 10:51:01 +01:00
|
|
|
let b58check_prefix = Tezos_crypto.Base58.Prefix.protocol_hash
|
2017-11-27 06:13:12 +01:00
|
|
|
let size = None
|
|
|
|
end)
|
2016-11-28 21:54:32 +01:00
|
|
|
|
2017-11-27 06:13:12 +01:00
|
|
|
let () =
|
2018-02-08 10:51:01 +01:00
|
|
|
Tezos_crypto.Base58.check_encoded_prefix b58check_encoding "P" 51
|
2016-11-28 21:54:32 +01:00
|
|
|
|