Function frame_support::traits::tokens::fungible::conformance_tests::inspect_mutate::mint_into_success
source · pub fn mint_into_success<T, AccountId>(_dust_trap: Option<AccountId>)where
T: Mutate<AccountId>,
<T as Inspect<AccountId>>::Balance: AtLeast8BitUnsigned + Debug,
AccountId: AtLeast8BitUnsigned,
Expand description
Test the mint_into
function for successful token minting.
This test checks the mint_into
function in the Mutate
trait implementation for type T
.
It ensures that account balances and total issuance values are updated correctly after minting
tokens into two distinct accounts.
§Type Parameters
- `T`: Implements `Mutate<AccountId>`.
- `AccountId`: Account identifier implementing `AtLeast8BitUnsigned`.