Add Testnet 2 Config

Starts Tuesday, April 16th, with confirmed keys/boot nodes.
This commit is contained in:
Luke Parker
2024-04-11 15:49:32 -04:00
parent 1987983f88
commit 10124ac4a8
3 changed files with 106 additions and 3 deletions

View File

@@ -159,9 +159,11 @@ pub mod pallet {
///
/// Errors if any amount overflows.
pub fn mint(to: Public, balance: Balance) -> Result<(), Error<T, I>> {
/*
if !T::AllowMint::is_allowed(&balance) {
Err(Error::<T, I>::MintNotAllowed)?;
}
*/
// update the balance
Self::increase_balance_internal(to, balance)?;