Skip to content

Commit

Permalink
Repo structure
Browse files Browse the repository at this point in the history
  • Loading branch information
lealobanov committed Dec 10, 2024
1 parent 7fc9e58 commit 4a70ca2
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions cadence/contracts/Recipe.cdc
Original file line number Diff line number Diff line change
@@ -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)
}
}

0 comments on commit 4a70ca2

Please sign in to comment.