mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2024-12-23 11:59:30 +00:00
increment mint index by 1
This commit is contained in:
parent
e76fd0b00a
commit
79706d51f5
1 changed files with 1 additions and 1 deletions
|
@ -2654,7 +2654,7 @@ class FiroWallet extends CoinServiceAPI with WalletCache, WalletDB, FiroHive {
|
|||
|
||||
Future<List<Map<String, dynamic>>> createMintsFromAmount(int total) async {
|
||||
var tmpTotal = total;
|
||||
var index = 0;
|
||||
var index = 1;
|
||||
var mints = <Map<String, dynamic>>[];
|
||||
final nextFreeMintIndex = firoGetMintIndex()!;
|
||||
while (tmpTotal > 0) {
|
||||
|
|
Loading…
Reference in a new issue