mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2024-12-23 11:59:30 +00:00
ensure skipping tx if it is a jmint
This commit is contained in:
parent
73d877654b
commit
a77c8c02fd
1 changed files with 1 additions and 1 deletions
|
@ -405,7 +405,7 @@ Future<Map<dynamic, dynamic>> staticProcessRestore(
|
|||
tx = null;
|
||||
}
|
||||
|
||||
if (tx == null) {
|
||||
if (tx == null || tx.subType == isar_models.TransactionSubType.join) {
|
||||
// This is a jmint.
|
||||
return;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue