From bce574993ff8c8b8219e4c9af48716a421313e5a Mon Sep 17 00:00:00 2001 From: Oliver Tale-Yazdi Date: Sun, 2 Jul 2023 11:02:20 +0200 Subject: [PATCH] Allow Root to initiate auctions Signed-off-by: Oliver Tale-Yazdi --- runtime/polkadot/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runtime/polkadot/src/lib.rs b/runtime/polkadot/src/lib.rs index 073a8bbb2d93..d0836745cab4 100644 --- a/runtime/polkadot/src/lib.rs +++ b/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; }