From 4a70ca2566059dc91c43cd0d20aaeb58f8691414 Mon Sep 17 00:00:00 2001 From: Lea Lobanov Date: Tue, 10 Dec 2024 20:43:02 +0400 Subject: [PATCH] Repo structure --- cadence/contracts/Recipe.cdc | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/cadence/contracts/Recipe.cdc b/cadence/contracts/Recipe.cdc index b73860c..980f470 100644 --- a/cadence/contracts/Recipe.cdc +++ b/cadence/contracts/Recipe.cdc @@ -1,8 +1,10 @@ +import "FlowToken" + access(all) contract Recipe { // Creating an empty vault access(all) - fun createEmptyVault(): @Vault { - return <-create Vault(balance: 0.0) + fun createEmptyVault(): @FlowToken.Vault { + return <-create FlowToken.Vault(balance: 0.0) } } \ No newline at end of file