Companion for #10309 - child-bounties (#4341)

* Added config for ChildBountyManager type in bounties.

* Update Cargo.lock

Co-authored-by: Shawn Tabrizi <shawntabrizi@gmail.com>
This commit is contained in:
Gautam Dhameja
2021-12-08 00:27:06 +01:00
committed by GitHub
parent 7b33cdf606
commit 9e69ec9250
3 changed files with 165 additions and 163 deletions
+163 -163
View File
File diff suppressed because it is too large Load Diff
+1
View File
@@ -757,6 +757,7 @@ impl pallet_bounties::Config for Runtime {
type BountyUpdatePeriod = BountyUpdatePeriod; type BountyUpdatePeriod = BountyUpdatePeriod;
type BountyCuratorDeposit = BountyCuratorDeposit; type BountyCuratorDeposit = BountyCuratorDeposit;
type BountyValueMinimum = BountyValueMinimum; type BountyValueMinimum = BountyValueMinimum;
type ChildBountyManager = ();
type DataDepositPerByte = DataDepositPerByte; type DataDepositPerByte = DataDepositPerByte;
type Event = Event; type Event = Event;
type MaximumReasonLength = MaximumReasonLength; type MaximumReasonLength = MaximumReasonLength;
+1
View File
@@ -788,6 +788,7 @@ impl pallet_bounties::Config for Runtime {
type BountyUpdatePeriod = BountyUpdatePeriod; type BountyUpdatePeriod = BountyUpdatePeriod;
type BountyCuratorDeposit = BountyCuratorDeposit; type BountyCuratorDeposit = BountyCuratorDeposit;
type BountyValueMinimum = BountyValueMinimum; type BountyValueMinimum = BountyValueMinimum;
type ChildBountyManager = ();
type DataDepositPerByte = DataDepositPerByte; type DataDepositPerByte = DataDepositPerByte;
type MaximumReasonLength = MaximumReasonLength; type MaximumReasonLength = MaximumReasonLength;
type WeightInfo = weights::pallet_bounties::WeightInfo<Runtime>; type WeightInfo = weights::pallet_bounties::WeightInfo<Runtime>;