github.com/koko1123/flow-go-1@v0.29.6/fvm/blueprints/scripts/setExecutionMemoryLimit.cdc (about)

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