Alpha: change documented field labels to underscores in json field names
This commit is contained in:
parent
ea5992d030
commit
41b98dac63
@ -7633,8 +7633,8 @@ Protocol Alpha
|
|||||||
<pre>
|
<pre>
|
||||||
{ "type_map":
|
{ "type_map":
|
||||||
[ { "location": $micheline.location,
|
[ { "location": $micheline.location,
|
||||||
"stackBefore": [ $micheline.michelson_v1.expression ... ],
|
"stack_before": [ $micheline.michelson_v1.expression ... ],
|
||||||
"stackAfter": [ $micheline.michelson_v1.expression ... ] } ... ],
|
"stack_after": [ $micheline.michelson_v1.expression ... ] } ... ],
|
||||||
"gas": $bignum || "unaccounted" }
|
"gas": $bignum || "unaccounted" }
|
||||||
$bignum:
|
$bignum:
|
||||||
/* Big number
|
/* Big number
|
||||||
|
@ -37,8 +37,8 @@ let type_map_enc =
|
|||||||
(fun (loc, bef, aft) -> (loc, (bef, aft)))
|
(fun (loc, bef, aft) -> (loc, (bef, aft)))
|
||||||
(obj3
|
(obj3
|
||||||
(req "location" Script.location_encoding)
|
(req "location" Script.location_encoding)
|
||||||
(req "stackBefore" stack_enc)
|
(req "stack_before" stack_enc)
|
||||||
(req "stackAfter" stack_enc)))
|
(req "stack_after" stack_enc)))
|
||||||
|
|
||||||
let stack_ty_enc =
|
let stack_ty_enc =
|
||||||
let open Data_encoding in
|
let open Data_encoding in
|
||||||
|
Loading…
Reference in New Issue
Block a user