Skip to content

Commit

Permalink
Debug tx
Browse files Browse the repository at this point in the history
  • Loading branch information
lealobanov committed Dec 17, 2024
1 parent cfdf636 commit db214ac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cadence/transactions/withdraw_token.cdc
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ transaction {

prepare(acct: auth(Storage, Capabilities) &Account) {
// Borrow a reference to the sender's Vault with the Withdraw entitlement
let vaultRef = acct.storage.borrow<auth(Withdraw) &ExampleToken.Vault>(
let vaultRef = acct.storage.borrow<auth(ExampleToken.Withdraw) &ExampleToken.Vault>(
from: /storage/MainVault
) ?? panic("Could not borrow a reference to the sender's Vault with Withdraw entitlement")

Expand Down

0 comments on commit db214ac

Please sign in to comment.