From ce24f0bc67c42d43d7b5357dd5d3475106aa29b0 Mon Sep 17 00:00:00 2001 From: Gaith Hallak Date: Sun, 23 Oct 2022 11:18:19 +0300 Subject: [PATCH] Undo whitespace changes --- src/aeso_ast_to_fcode.erl | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/aeso_ast_to_fcode.erl b/src/aeso_ast_to_fcode.erl index 6821871..ad9ed37 100644 --- a/src/aeso_ast_to_fcode.erl +++ b/src/aeso_ast_to_fcode.erl @@ -122,12 +122,12 @@ return := ftype(), body := fexpr() }. --type fcode() :: #{ contract_name := string(), - state_type := ftype(), - state_layout := state_layout(), - event_type := ftype() | none, - functions := #{ fun_name() => fun_def() }, - payable := boolean() }. +-type fcode() :: #{ contract_name := string(), + state_type := ftype(), + state_layout := state_layout(), + event_type := ftype() | none, + functions := #{ fun_name() => fun_def() }, + payable := boolean() }. -type type_def() :: fun(([ftype()]) -> ftype()).