mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2024-12-23 11:59:30 +00:00
null assignment fix
This commit is contained in:
parent
52fbcdb5e1
commit
5cee68913c
3 changed files with 3 additions and 3 deletions
|
@ -867,7 +867,7 @@ class _DesktopTransactionCardRowState
|
|||
.read(mainDBProvider)
|
||||
.getEthContractSync(_transaction.contractAddress!);
|
||||
} else {
|
||||
ethContract == null;
|
||||
ethContract = null;
|
||||
}
|
||||
|
||||
super.initState();
|
||||
|
|
|
@ -74,7 +74,7 @@ class _TransactionCardStateV2 extends ConsumerState<TransactionCardV2> {
|
|||
|
||||
unit = tokenContract!.symbol;
|
||||
} else {
|
||||
tokenContract == null;
|
||||
tokenContract = null;
|
||||
unit = coin.ticker;
|
||||
}
|
||||
|
||||
|
|
|
@ -109,7 +109,7 @@ class _TransactionV2DetailsViewState
|
|||
|
||||
unit = ethContract!.symbol;
|
||||
} else {
|
||||
ethContract == null;
|
||||
ethContract = null;
|
||||
unit = coin.ticker;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue