From a7298dc16d08c4977cdc89b5a84ce83571f3981d Mon Sep 17 00:00:00 2001 From: Galfour Date: Sat, 1 Jun 2019 11:51:49 +0000 Subject: [PATCH] fix cli.ml --- src/bin/cli.ml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/bin/cli.ml b/src/bin/cli.ml index 7e3873d48..81480236e 100644 --- a/src/bin/cli.ml +++ b/src/bin/cli.ml @@ -47,7 +47,7 @@ let compile_file = toplevel @@ let%bind contract = trace (simple_error "compile michelson") @@ - Ligo.Contract.compile_contract_file source entry_point syntax in + Ligo.Run.compile_contract_file source entry_point syntax in Format.printf "Contract:\n%s\n" contract ; ok () in @@ -61,7 +61,7 @@ let compile_parameter = toplevel @@ let%bind value = trace (simple_error "compile-input") @@ - Ligo.Contract.compile_contract_parameter source entry_point expression syntax in + Ligo.Run.compile_contract_parameter source entry_point expression syntax in Format.printf "Input:\n%s\n" value; ok () in @@ -75,7 +75,7 @@ let compile_storage = toplevel @@ let%bind value = trace (simple_error "compile-storage") @@ - Ligo.Contract.compile_contract_storage source entry_point expression syntax in + Ligo.Run.compile_contract_storage source entry_point expression syntax in Format.printf "Storage:\n%s\n" value; ok () in