Client: fix some error pretty printing
This commit is contained in:
parent
32c5f47593
commit
8db9fb328f
@ -185,23 +185,33 @@ let report_errors ~details ~show_source ?parsed ppf errs =
|
|||||||
Format.fprintf ppf
|
Format.fprintf ppf
|
||||||
"@[<v 0>Not enough gas to deserialize the operation.@,\
|
"@[<v 0>Not enough gas to deserialize the operation.@,\
|
||||||
Injecting such a transaction could have you banned from mempools.@]" ;
|
Injecting such a transaction could have you banned from mempools.@]" ;
|
||||||
|
if rest <> [] then Format.fprintf ppf "@," ;
|
||||||
|
print_trace locations rest
|
||||||
|
| Alpha_environment.Ecoproto_error Cannot_serialize_error :: rest ->
|
||||||
|
Format.fprintf ppf
|
||||||
|
"Error too big to serialize using the provided gas bounds." ;
|
||||||
|
if rest <> [] then Format.fprintf ppf "@," ;
|
||||||
print_trace locations rest
|
print_trace locations rest
|
||||||
| Alpha_environment.Ecoproto_error (Missing_field prim) :: rest ->
|
| Alpha_environment.Ecoproto_error (Missing_field prim) :: rest ->
|
||||||
Format.fprintf ppf "@[<v 0>Missing contract field: %s@]"
|
Format.fprintf ppf "@[<v 0>Missing contract field: %s@]"
|
||||||
(Michelson_v1_primitives.string_of_prim prim) ;
|
(Michelson_v1_primitives.string_of_prim prim) ;
|
||||||
|
if rest <> [] then Format.fprintf ppf "@," ;
|
||||||
print_trace locations rest
|
print_trace locations rest
|
||||||
| Alpha_environment.Ecoproto_error (Duplicate_field (loc, prim)) :: rest ->
|
| Alpha_environment.Ecoproto_error (Duplicate_field (loc, prim)) :: rest ->
|
||||||
Format.fprintf ppf "@[<v 0>%aduplicate contract field: %s@]"
|
Format.fprintf ppf "@[<v 0>%aduplicate contract field: %s@]"
|
||||||
print_loc loc
|
print_loc loc
|
||||||
(Michelson_v1_primitives.string_of_prim prim) ;
|
(Michelson_v1_primitives.string_of_prim prim) ;
|
||||||
|
if rest <> [] then Format.fprintf ppf "@," ;
|
||||||
print_trace locations rest
|
print_trace locations rest
|
||||||
| Alpha_environment.Ecoproto_error (Unexpected_big_map loc) :: rest ->
|
| Alpha_environment.Ecoproto_error (Unexpected_big_map loc) :: rest ->
|
||||||
Format.fprintf ppf "%abig_map type only allowed on the left of the toplevel storage pair"
|
Format.fprintf ppf "%abig_map type only allowed on the left of the toplevel storage pair"
|
||||||
print_loc loc ;
|
print_loc loc ;
|
||||||
|
if rest <> [] then Format.fprintf ppf "@," ;
|
||||||
print_trace locations rest
|
print_trace locations rest
|
||||||
| Alpha_environment.Ecoproto_error (Unexpected_operation loc) :: rest ->
|
| Alpha_environment.Ecoproto_error (Unexpected_operation loc) :: rest ->
|
||||||
Format.fprintf ppf "%aoperation type forbidden in parameter, storage and constants"
|
Format.fprintf ppf "%aoperation type forbidden in parameter, storage and constants"
|
||||||
print_loc loc ;
|
print_loc loc ;
|
||||||
|
if rest <> [] then Format.fprintf ppf "@," ;
|
||||||
print_trace locations rest
|
print_trace locations rest
|
||||||
| Alpha_environment.Ecoproto_error (Runtime_contract_error (contract, expr)) :: rest ->
|
| Alpha_environment.Ecoproto_error (Runtime_contract_error (contract, expr)) :: rest ->
|
||||||
let parsed =
|
let parsed =
|
||||||
|
Loading…
Reference in New Issue
Block a user