pub trait WeightInfo {
    fn pay(x: u32) -> Weight;
    fn release() -> Weight;
    fn cancel() -> Weight;
    fn resolve_payment() -> Weight;
    fn request_refund() -> Weight;
    fn dispute_refund() -> Weight;
    fn request_payment() -> Weight;
    fn accept_and_pay() -> Weight;
    fn remove_task() -> Weight;
}
Expand description

Weight functions needed for virto_payment.

Required Methods§

Implementations on Foreign Types§

Implementors§