mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2024-11-17 09:47:37 +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) {
|
||||
isar_models.Transaction? tx;
|
||||
try {
|
||||
tx == data.firstWhere((e) => e.txid == value.txId);
|
||||
tx = data.firstWhere((e) => e.txid == value.txId);
|
||||
} catch (_) {
|
||||
tx = null;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue