Skip to content
Snippets Groups Projects
Commit 363dbbe8 authored by Alexander Theißen's avatar Alexander Theißen Committed by GitHub
Browse files

Forward wasmer-sandbox feature to sp-sandbox (#10268)

parent 120894fd
No related merge requests found
......@@ -4758,6 +4758,7 @@ dependencies = [
"sp-npos-elections",
"sp-offchain",
"sp-runtime",
"sp-sandbox",
"sp-session",
"sp-staking",
"sp-std",
......
......@@ -41,6 +41,7 @@ sp-transaction-pool = { version = "4.0.0-dev", default-features = false, path =
sp-version = { version = "4.0.0-dev", default-features = false, path = "../../../primitives/version" }
sp-npos-elections = { version = "4.0.0-dev", default-features = false, path = "../../../primitives/npos-elections" }
sp-io = { version = "4.0.0-dev", default-features = false, path = "../../../primitives/io" }
sp-sandbox = { version = "0.10.0-dev", default-features = false, path = "../../../primitives/sandbox" }
# frame dependencies
frame-executive = { version = "4.0.0-dev", default-features = false, path = "../../../frame/executive" }
......@@ -257,3 +258,8 @@ try-runtime = [
# Make contract callable functions marked as __unstable__ available. Do not enable
# on live chains as those are subject to change.
contracts-unstable-interface = ["pallet-contracts/unstable-interface"]
# Force `sp-sandbox` to call into the host resident executor. One still need to make sure
# that `sc-executor` gets the `wasmer-sandbox` feature which happens automatically when
# specified on the command line.
# Don't use that on a production chain.
wasmer-sandbox = ["sp-sandbox/wasmer-sandbox"]
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment