Added multisig in Rococo (#3873)

* Added multisig in Rococo

* removed formatting error

Co-authored-by: Ayush <>
This commit is contained in:
Ayush Mishra
2021-09-27 18:05:50 +05:30
committed by GitHub
parent 7f2fab263b
commit fdebbbf4b3
3 changed files with 26 additions and 1 deletions
+4
View File
@@ -44,6 +44,7 @@ pallet-indices = { git = "https://github.com/paritytech/substrate", branch = "ma
pallet-membership = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
pallet-mmr = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
pallet-mmr-primitives = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
pallet-multisig = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
pallet-session = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
@@ -150,6 +151,7 @@ std = [
"xcm-builder/std",
"pallet-xcm/std",
"log/std",
"pallet-multisig/std",
]
# When enabled, the runtime API will not be build.
#
@@ -173,6 +175,7 @@ runtime-benchmarks = [
"pallet-timestamp/runtime-benchmarks",
"pallet-xcm/runtime-benchmarks",
"xcm-builder/runtime-benchmarks",
"pallet-multisig/runtime-benchmarks",
"frame-benchmarking",
"hex-literal"
]
@@ -197,4 +200,5 @@ try-runtime = [
"pallet-timestamp/try-runtime",
"pallet-transaction-payment/try-runtime",
"runtime-common/try-runtime",
"pallet-multisig/try-runtime",
]