2018-02-05 19:23:18 +01:00
|
|
|
(**************************************************************************)
|
|
|
|
(* *)
|
2018-02-05 21:17:03 +01:00
|
|
|
(* Copyright (c) 2014 - 2018. *)
|
2018-02-05 19:23:18 +01:00
|
|
|
(* Dynamic Ledger Solutions, Inc. <contact@tezos.com> *)
|
|
|
|
(* *)
|
|
|
|
(* All rights reserved. No warranty, explicit or implicit, provided. *)
|
|
|
|
(* *)
|
|
|
|
(**************************************************************************)
|
|
|
|
|
|
|
|
module Name = struct let name = "alpha" end
|
2018-02-17 14:39:45 +01:00
|
|
|
module Alpha_environment = Tezos_protocol_environment_memory.MakeV1(Name)()
|
2018-02-05 19:23:18 +01:00
|
|
|
|
2018-06-04 14:35:06 +02:00
|
|
|
type alpha_error = Alpha_environment.Error_monad.error
|
|
|
|
type 'a alpha_tzresult = 'a Alpha_environment.Error_monad.tzresult
|
|
|
|
|
|
|
|
include Tezos_protocol_alpha.Functor.Make(Alpha_environment)
|
2018-02-05 19:23:18 +01:00
|
|
|
|
2018-06-04 14:35:06 +02:00
|
|
|
module M = Alpha_environment.Lift(Main)
|