From 5d22546d980a14f8db6ffc1fa4685b467fa7ae55 Mon Sep 17 00:00:00 2001 From: Tal Kol Date: Thu, 20 Oct 2022 16:02:15 +0100 Subject: [PATCH] Update main.fc --- contracts/main.fc | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/contracts/main.fc b/contracts/main.fc index deb1697..65dc3dd 100644 --- a/contracts/main.fc +++ b/contracts/main.fc @@ -1,13 +1,13 @@ -;; =============== storage ============================= - -;; storage binary format is defined as TL-B in companion .tlb file - #pragma version >=0.2.0; #include "imports/stdlib.fc"; #include "imports/constants.fc"; #include "imports/utils.fc"; +;; =============== storage ============================= + +;; storage binary format is defined as TL-B in companion .tlb file + (slice, int) load_data() inline { var ds = get_data().begin_parse(); return ( @@ -101,4 +101,4 @@ int counter() method_id { int balance() method_id { var [balance, _] = get_balance(); return balance; -} \ No newline at end of file +}