Clean runtime constants (#3459)

* Remove bogus constants.

* Bump.
This commit is contained in:
Kian Paimani
2019-08-24 18:00:26 +02:00
committed by Bastian Köcher
parent e9273329ae
commit c14afe4352
6 changed files with 3 additions and 35 deletions
-7
View File
@@ -174,13 +174,6 @@ impl Decode for Vote {
type BalanceOf<T> = <<T as Trait>::Currency as Currency<<T as system::Trait>::AccountId>>::Balance;
pub const DEFAULT_ENACTMENT_PERIOD: u32 = 0;
pub const DEFAULT_LAUNCH_PERIOD: u32 = 0;
pub const DEFAULT_VOTING_PERIOD: u32 = 0;
pub const DEFAULT_MINIMUM_DEPOSIT: u32 = 0;
pub const DEFAULT_EMERGENCY_VOTING_PERIOD: u32 = 0;
pub const DEFAULT_COOLOFF_PERIOD: u32 = 0;
pub trait Trait: system::Trait + Sized {
type Proposal: Parameter + Dispatchable<Origin=Self::Origin>;
type Event: From<Event<Self>> + Into<<Self as system::Trait>::Event>;