pub trait TimestampAPI {
type T: Config;
// Required methods
fn get_timestamp(&mut self) -> <Self::T as Config>::Moment;
fn set_timestamp(&mut self, timestamp: <Self::T as Config>::Moment);
}
Expand description
Timestamp API used to interact with the timestamp pallet.
Required Associated Types§
Required Methods§
Sourcefn get_timestamp(&mut self) -> <Self::T as Config>::Moment
fn get_timestamp(&mut self) -> <Self::T as Config>::Moment
Return the timestamp of the current block.