mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2025-01-22 10:34:32 +00:00
fix assignment issue
This commit is contained in:
parent
01999e4f29
commit
02fe1103cb
1 changed files with 1 additions and 1 deletions
|
@ -2447,7 +2447,7 @@ class FiroWallet extends CoinServiceAPI
|
||||||
element.forEach((key, value) {
|
element.forEach((key, value) {
|
||||||
isar_models.Transaction? tx;
|
isar_models.Transaction? tx;
|
||||||
try {
|
try {
|
||||||
tx == data.firstWhere((e) => e.txid == value.txId);
|
tx = data.firstWhere((e) => e.txid == value.txId);
|
||||||
} catch (_) {
|
} catch (_) {
|
||||||
tx = null;
|
tx = null;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue