Trait TimestampAPI

Source
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§

Source

type T: Config

The runtime timestamp config.

Required Methods§

Source

fn get_timestamp(&mut self) -> <Self::T as Config>::Moment

Return the timestamp of the current block.

Source

fn set_timestamp(&mut self, timestamp: <Self::T as Config>::Moment)

Set the timestamp of the current block.

§Arguments
  • timestamp - The new timestamp to be set.

Implementors§

Source§

impl<T> TimestampAPI for T
where T: Sandbox, T::Runtime: Config,

Source§

type T = <T as Sandbox>::Runtime