logo
pub trait StandardPayment: AccountProvider + MintProvider + HandlePaymentProvider + Sized {
    fn pay(&mut self, amount: U512) -> Result<(), ApiError> { ... }
}
Expand description

Implementation of a standard payment contract.

Provided methods

Pay amount to a payment purse.

Implementors