mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2025-01-11 05:04:35 +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;
|
tx = null;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (tx == null) {
|
if (tx == null || tx.subType == isar_models.TransactionSubType.join) {
|
||||||
// This is a jmint.
|
// This is a jmint.
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue