Type Definition pallet_democracy::pallet::NextExternal

source ·
pub type NextExternal<T: Config> = StorageValue<_GeneratedPrefixForStorageNextExternal<T>, (BoundedCallOf<T>, VoteThreshold)>;
Expand description

The referendum to be tabled whenever it would be valid to table an external proposal. This happens when a referendum needs to be tabled and one of two conditions are met:

  • LastTabledWasExternal is false; or
  • PublicProps is empty.

Storage type is StorageValue with value type (BoundedCallOf < T >, VoteThreshold).