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

[contracts] Forbid calling back to contracts after switching to runtime #13443

Merged
merged 19 commits into from Mar 6, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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.

3 changes: 3 additions & 0 deletions frame/contracts/CHANGELOG.md
Expand Up @@ -20,6 +20,9 @@ In other words: Upgrading this pallet will not break pre-existing contracts.

### Added

- Forbid calling back to contracts after switching to runtime
[#13443](https://github.com/paritytech/substrate/pull/13443)

athei marked this conversation as resolved.
Show resolved Hide resolved
- Allow contracts to dispatch calls into the runtime (**unstable**)
[#9276](https://github.com/paritytech/substrate/pull/9276)

Expand Down
2 changes: 2 additions & 0 deletions frame/contracts/Cargo.toml
Expand Up @@ -35,6 +35,7 @@ rand = { version = "0.8", optional = true, default-features = false }
rand_pcg = { version = "0.3", optional = true }

# Substrate Dependencies
environmental = { version = "1.1.4", default-features = false }
athei marked this conversation as resolved.
Show resolved Hide resolved
frame-benchmarking = { version = "4.0.0-dev", default-features = false, path = "../benchmarking", optional = true }
frame-support = { version = "4.0.0-dev", default-features = false, path = "../support" }
frame-system = { version = "4.0.0-dev", default-features = false, path = "../system" }
Expand Down Expand Up @@ -80,6 +81,7 @@ std = [
"log/std",
"rand/std",
"wasmparser/std",
"environmental/std",
]
runtime-benchmarks = [
"frame-benchmarking/runtime-benchmarks",
Expand Down