From 4111fd9e3313ec17d99ca9b5b1656445b5b49d8f Mon Sep 17 00:00:00 2001 From: EmelyanenkoK Date: Mon, 14 Nov 2022 16:44:18 +0300 Subject: [PATCH] Add version pragmas (#8) * Add pragma to wallet * Add pragma to subscription plugin --- func/simple-subscription-plugin.fc | 1 + func/wallet-v4-code.fc | 1 + 2 files changed, 2 insertions(+) diff --git a/func/simple-subscription-plugin.fc b/func/simple-subscription-plugin.fc index 15ca4b8..018328d 100644 --- a/func/simple-subscription-plugin.fc +++ b/func/simple-subscription-plugin.fc @@ -1,3 +1,4 @@ +#pragma version =0.2.0; ;; Simple subscription plugin for wallet-v4 ;; anyone can ask to send a subscription payment diff --git a/func/wallet-v4-code.fc b/func/wallet-v4-code.fc index a3561ec..6fc2f40 100644 --- a/func/wallet-v4-code.fc +++ b/func/wallet-v4-code.fc @@ -1,3 +1,4 @@ +#pragma version =0.2.0; ;; Wallet smart contract with plugins (slice, int) dict_get?(cell dict, int key_len, slice index) asm(index dict key_len) "DICTGET" "NULLSWAPIFNOT";