Whoops! 😨 Something unexpected happened...
[Error Code: 1101] error caused by: 1 error occurred:
* transaction preprocess failed: [Error Code: 1101] cadence runtime error: Execution failed:
error: cannot find type in this scope: `AuthAccount`
--> 0a6978d9ca64681ed04a34423d045483cf54411190d585148932bdd0b09cbb5d:11:16
|
11 | prepare(acct: AuthAccount, payerAcct: AuthAccount) {
| ^^^^^^^^^^^ not found in this scope
error: cannot find type in this scope: `AuthAccount`
--> 0a6978d9ca64681ed04a34423d045483cf54411190d585148932bdd0b09cbb5d:11:40
|
11 | prepare(acct: AuthAccount, payerAcct: AuthAccount) {
| ^^^^^^^^^^^ not found in this scope
error: too few arguments
--> 0a6978d9ca64681ed04a34423d045483cf54411190d585148932bdd0b09cbb5d:17:19
|
17 | acct.save(<- FraggleRock.createEmptyCollection(), to: FraggleRock.CollectionStoragePath)
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected at least 1, got 0
error: value of type `&Account` has no member `storageUsed`
--> 0a6978d9ca64681ed04a34423d045483cf54411190d585148932bdd0b09cbb5d:26:22
|
26 | if (updtRecipient.storageUsed > updtRecipient.storageCapacity) {
| ^^^^^^^^^^^ unknown member
error: value of type `&Account` has no member `storageCapacity`
--> 0a6978d9ca64681ed04a34423d045483cf54411190d585148932bdd0b09cbb5d:26:50
|
26 | if (updtRecipient.storageUsed > updtRecipient.storageCapacity) {
| ^^^^^^^^^^^^^^^ unknown member
error: value of type `&Account` has no member `storageUsed`
--> 0a6978d9ca64681ed04a34423d045483cf54411190d585148932bdd0b09cbb5d:29:45
|
29 | let storageUsed = UFix64(updtRecipient.storageUsed)
| ^^^^^^^^^^^ unknown member
error: value of type `&Account` has no member `storageCapacity`
--> 0a6978d9ca64681ed04a34423d045483cf54411190d585148932bdd0b09cbb5d:30:49
|
30 | let storageCapacity = UFix64(updtRecipient.storageCapacity)
| ^^^^^^^^^^^^^^^ unknown member
error: cannot access `withdraw`: function requires `Withdraw` authorization, but reference is unauthorized
--> 0a6978d9ca64681ed04a34423d045483cf54411190d585148932bdd0b09cbb5d:33:23
|
33 | let sentVault <- self.vault.withdraw(amount: flowAmount)
| ^^^^^^^^^^^^^^^^^^^
error: value of type `&Account` has no member `getCapability`
--> 0a6978d9ca64681ed04a34423d045483cf54411190d585148932bdd0b09cbb5d:34:52
|
34 | let updtRecipientFlowReceiver = updtRecipient.getCapability(/public/flowTokenReceiver).borrow<&{FungibleToken.Receiver}>()?? panic("failed to borrow reference to updtRecipient vault")
| ^^^^^^^^^^^^^ unknown member