github.com/onflow/flow-go@v0.35.7-crescendo-preview.23-atree-inlining/fvm/blueprints/scripts/setExecutionMemoryLimit.cdc (about)

     1  transaction(newLimit: UInt64, path: StoragePath) {
     2      prepare(signer: auth(Storage) &Account) {
     3          signer.storage.load<UInt64>(from: path)
     4          signer.storage.save(newLimit, to: path)
     5      }
     6  }