use ink::primitives::AccountId;
use crate::token::psp22::PSP22Error;
pub use crate::token::psp22::PSP22Internal;
pub use pendzl::traits::Balance;
pub trait PSP22MintableDefaultImpl: PSP22Internal {
fn mint_default_impl(
&mut self,
account: AccountId,
amount: Balance,
) -> Result<(), PSP22Error> {
self._mint_to(&account, &amount)
}
}