Detect gas exhaustion while typechecking
This commit is contained in:
parent
fe84d21208
commit
d10b95357f
@ -23,6 +23,9 @@ module Errors = struct
|
||||
let code = Format.asprintf "%a" Michelson.pp c in
|
||||
"bad contract type\n"^code in
|
||||
error title_type_check_msg message
|
||||
let ran_out_of_gas () =
|
||||
let message () = "Ran out of gas!" in
|
||||
error title_type_check_msg message
|
||||
let unknown () =
|
||||
let message () =
|
||||
"unknown error" in
|
||||
@ -47,6 +50,7 @@ let build_contract : Compiler.compiled_expression -> Michelson.michelson result
|
||||
| Err_parameter -> fail @@ Errors.bad_parameter contract ()
|
||||
| Err_storage -> fail @@ Errors.bad_storage contract ()
|
||||
| Err_contract -> fail @@ Errors.bad_contract contract ()
|
||||
| Err_gas -> fail @@ Errors.ran_out_of_gas ()
|
||||
| Err_unknown -> fail @@ Errors.unknown ()
|
||||
|
||||
type check_type = Check_parameter | Check_storage
|
||||
|
@ -1107,6 +1107,7 @@ let unparse_ty_michelson ty =
|
||||
type typecheck_res =
|
||||
| Type_checked
|
||||
| Err_parameter | Err_storage | Err_contract
|
||||
| Err_gas
|
||||
| Err_unknown
|
||||
|
||||
let typecheck_contract contract =
|
||||
@ -1116,6 +1117,7 @@ let typecheck_contract contract =
|
||||
| Ok _res -> return Type_checked
|
||||
| Error (Script_tc_errors.Ill_formed_type (Some "parameter", _code, _)::_) -> return Err_parameter
|
||||
| Error (Script_tc_errors.Ill_formed_type (Some "storage", _code, _)::_) -> return Err_storage
|
||||
| Error (Script_tc_errors.Ill_typed_contract _ :: Script_tc_errors.Cannot_serialize_error :: []) -> return @@ Err_gas
|
||||
| Error (Script_tc_errors.Ill_typed_contract (_code, _)::_) -> return @@ Err_contract
|
||||
| Error _ -> return Err_unknown
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user