This commit is contained in:
swrup 2025-12-06 17:14:49 +01:00
parent 6eb7edb0bc
commit 35b41e9606

View file

@ -1075,15 +1075,11 @@ module AccountLimit = struct
|> finish
end
module ZeroLimitedOperation = struct
type t = {
operation_type: Account_operation.t;
}
module ZeroLimitedOperation = struct
type t = { operation_type: Account_operation.t }
let jsont =
let make operation_type=
{ operation_type}
in
let make operation_type = { operation_type } in
let operation_type v = v.operation_type in
let open Jsont.Object in
map ~kind:"ZeroLimitedOperation" make