Skip to content
This repository has been archived by the owner on Nov 15, 2023. It is now read-only.

Commit

Permalink
Merge branch 'master' into na-sgx-hello-world
Browse files Browse the repository at this point in the history
* master:
  pallet-contracts: migrate to nested storage transaction mechanism (#6382)
  • Loading branch information
dvdplm committed Jun 24, 2020
2 parents 59eca64 + 9a9b248 commit a1d4fd6
Show file tree
Hide file tree
Showing 11 changed files with 661 additions and 936 deletions.
1 change: 1 addition & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions frame/contracts/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ pallet-transaction-payment = { version = "2.0.0-rc3", default-features = false,
wabt = "0.9.2"
assert_matches = "1.3.0"
hex-literal = "0.2.1"
pretty_assertions = "0.6.1"
pallet-balances = { version = "2.0.0-rc3", path = "../balances" }
pallet-timestamp = { version = "2.0.0-rc3", path = "../timestamp" }
pallet-randomness-collective-flip = { version = "2.0.0-rc3", path = "../randomness-collective-flip" }
Expand Down
6 changes: 5 additions & 1 deletion frame/contracts/fixtures/restoration.wat
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
(module
(import "env" "ext_set_storage" (func $ext_set_storage (param i32 i32 i32)))
(import "env" "ext_restore_to" (func $ext_restore_to (param i32 i32 i32 i32 i32 i32 i32 i32)))
(import "env" "ext_restore_to"
(func $ext_restore_to
(param i32 i32 i32 i32 i32 i32 i32 i32)
)
)
(import "env" "memory" (memory 1 1))

(func (export "call")
Expand Down
Loading

0 comments on commit a1d4fd6

Please sign in to comment.