From 16e431777f691fedd69c2deb76109b44c204559e Mon Sep 17 00:00:00 2001 From: Ayush Kumar Mishra Date: Fri, 8 Jan 2021 07:39:46 +0530 Subject: [PATCH] #41 added dependency of treasury pallet --- runtime/testnet/Cargo.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/runtime/testnet/Cargo.toml b/runtime/testnet/Cargo.toml index 3354df831..085c20aeb 100644 --- a/runtime/testnet/Cargo.toml +++ b/runtime/testnet/Cargo.toml @@ -44,6 +44,7 @@ pallet-sudo = { git = 'https://github.com/paritytech/substrate.git', branch = "m pallet-timestamp = { git = 'https://github.com/paritytech/substrate.git', branch = "master", default-features = false } pallet-transaction-payment = { git = 'https://github.com/paritytech/substrate.git', branch = "master", default-features = false } pallet-transaction-payment-rpc-runtime-api = { git = 'https://github.com/paritytech/substrate.git', branch = "master", default-features = false } +pallet-treasury = { version = "2.0.0", default-features = false } sp-api = { git = 'https://github.com/paritytech/substrate.git', branch = "master", default-features = false } sp-block-builder = { git = 'https://github.com/paritytech/substrate.git', branch = "master", default-features = false } sp-consensus-aura = { default-features = false, git = 'https://github.com/paritytech/substrate.git', branch = "master" } @@ -70,6 +71,7 @@ runtime-benchmarks = [ 'pallet-balances/runtime-benchmarks', 'pallet-collective/runtime-benchmarks', 'pallet-timestamp/runtime-benchmarks', + 'pallet-treasury/runtime-benchmarks', 'sp-runtime/runtime-benchmarks', ] std = [ @@ -89,6 +91,7 @@ std = [ 'pallet-timestamp/std', 'pallet-transaction-payment/std', 'pallet-transaction-payment-rpc-runtime-api/std', + 'pallet-treasury/std', 'sp-api/std', 'sp-block-builder/std', 'sp-consensus-aura/std',