Function pallet_democracy::pallet::dispatchables::fast_track
source · pub fn fast_track<T: Config>(
proposal_hash: T::Hash,
voting_period: BlockNumberFor<T>,
delay: BlockNumberFor<T>,
)
Expand description
Schedule the currently externally-proposed majority-carries referendum to be tabled immediately. If there is no externally-proposed referendum currently, or if there is one but it is not a majority-carries referendum then it fails.
The dispatch of this call must be FastTrackOrigin
.
proposal_hash
: The hash of the current external proposal.voting_period
: The period that is allowed for voting on this proposal. Increased to Must be always greater than zero. ForFastTrackOrigin
must be equal or greater thanFastTrackVotingPeriod
.delay
: The number of block after voting has ended in approval and this should be enacted. This doesn’t have a minimum amount.
Emits Started
.
Weight: O(1)
§Warning: Doc-Only
This function is an automatically generated, and is doc-only, uncallable
stub. See the real version in
Pallet::fast_track
.