diff --git a/substrate/srml/session/src/lib.rs b/substrate/srml/session/src/lib.rs index 4e2103a3dc..07d8350772 100644 --- a/substrate/srml/session/src/lib.rs +++ b/substrate/srml/session/src/lib.rs @@ -43,10 +43,11 @@ extern crate srml_system as system; extern crate srml_timestamp as timestamp; use rstd::prelude::*; -use primitives::traits::{Zero, One, OnFinalise, Convert, As}; +use primitives::traits::{Zero, One, OnFinalise, Convert}; use runtime_support::{StorageValue, StorageMap}; use runtime_support::dispatch::Result; use system::ensure_signed; +use rstd::ops::Mul; /// A session has changed. pub trait OnSessionChange { @@ -211,9 +212,9 @@ impl Module { /// Get the time that should have elapsed over a session if everything was working perfectly. pub fn ideal_session_duration() -> T::Moment { - let block_period = >::block_period(); - let session_length = >::sa(Self::length()); - session_length * block_period + let block_period: T::Moment = >::block_period(); + let session_length: T::BlockNumber = Self::length(); + Mul::::mul(block_period, session_length) } /// Number of blocks remaining in this session, not counting this one. If the session is diff --git a/substrate/srml/timestamp/src/lib.rs b/substrate/srml/timestamp/src/lib.rs index 38107025a4..fc602d4fa6 100644 --- a/substrate/srml/timestamp/src/lib.rs +++ b/substrate/srml/timestamp/src/lib.rs @@ -54,15 +54,19 @@ extern crate parity_codec as codec; use runtime_support::{StorageValue, Parameter}; use runtime_support::dispatch::Result; -use runtime_primitives::traits::{OnFinalise, SimpleArithmetic, As, Zero}; +use runtime_primitives::traits::{OnFinalise, SimpleArithmetic, Zero}; use system::ensure_inherent; +use rstd::ops::{Mul, Div}; + +#[cfg(any(feature = "std", test))] +use runtime_primitives::traits::As; pub trait Trait: consensus::Trait + system::Trait { /// The position of the required timestamp-set extrinsic. const TIMESTAMP_SET_POSITION: u32; /// Type used for expressing timestamp. - type Moment: Parameter + Default + SimpleArithmetic + As; + type Moment: Parameter + Default + SimpleArithmetic + Mul + Div; } decl_module! {