From 35b41e9606161923d1da54361b51b19446cc0eb7 Mon Sep 17 00:00:00 2001 From: swrup Date: Sat, 6 Dec 2025 17:14:49 +0100 Subject: [PATCH] --- src/api.ml | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/src/api.ml b/src/api.ml index e72cf91b..ede981d6 100644 --- a/src/api.ml +++ b/src/api.ml @@ -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