pub trait Validating<AccountId, Hash> {
    fn is_time_record_owner(o: AccountId, h: Hash) -> bool;
fn validate_and_archive(o: AccountId, h: Hash, a: bool) -> bool; }

Required methods

Implementors

impl<T: Config> Validating<<T as Config>::AccountId, <T as Config>::Hash> for Pallet<T>