From a7e3196b33ede46ef426d60c98dc12822c7f9f45 Mon Sep 17 00:00:00 2001 From: Oliver Tale-Yazdi Date: Sun, 2 Jul 2023 12:20:09 +0200 Subject: [PATCH] Allow Root to initiate auctions (#7449) Signed-off-by: Oliver Tale-Yazdi --- polkadot/runtime/polkadot/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/polkadot/runtime/polkadot/src/lib.rs b/polkadot/runtime/polkadot/src/lib.rs index 073a8bbb2d..d0836745ca 100644 --- a/polkadot/runtime/polkadot/src/lib.rs +++ b/polkadot/runtime/polkadot/src/lib.rs @@ -1287,7 +1287,7 @@ impl auctions::Config for Runtime { type EndingPeriod = EndingPeriod; type SampleLength = SampleLength; type Randomness = pallet_babe::RandomnessFromOneEpochAgo; - type InitiateOrigin = AuctionAdmin; + type InitiateOrigin = EitherOf, AuctionAdmin>; type WeightInfo = weights::runtime_common_auctions::WeightInfo; }