TransactionSEALED
#■▪~▓▒?█~◇@╱╳@?*▫╳@◆◇~╱*%╱%▓□#○$╱╲●╳&╳●^!~●▫●^◇@■●╱◇@░□○^#░◇*$&#
Transaction ID
Execution Fee
0.00058 FLOWExecution Error
Error Code: 1103
error caused by: 1 error occurred:
Raw Error
[Error Code: 1103] error caused by: 1 error occurred: * storage limit check failed: [Error Code: 1103] The account with address (e412bdf7e1f79780) uses 5247 bytes of storage which is over its capacity (0 bytes). Capacity can be increased by adding FLOW tokens to the account.
Transaction Summary
Contract CallCalled OracleInterface, OracleConfig
Contracts
Script Arguments
0oracleAddrAddress
1priceUFix64
0.10000000
Cadence Script
1import OracleInterface from 0xcec15c814971c1dc
2import OracleConfig from 0xcec15c814971c1dc
3transaction(oracleAddr: Address, price: UFix64) {
4 prepare(feederAccount: auth(Storage, Capabilities) &Account) {
5 let oraclePublicInterface_FeederRef = getAccount(oracleAddr).capabilities.borrow<&{OracleInterface.OraclePublicInterface_Feeder}>(OracleConfig.OraclePublicInterface_FeederPath)
6 ?? panic("Lost oracle public capability at ".concat(oracleAddr.toString()))
7 let pricePanelRef = feederAccount.storage.borrow<auth(OracleInterface.FeederAuth) &{OracleInterface.PriceFeeder}>(from: oraclePublicInterface_FeederRef.getPriceFeederStoragePath()) ?? panic("Lost feeder resource.")
8 pricePanelRef.publishPrice(price: price)
9 }
10 }