mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-11-17 09:47:35 +00:00
fix haven transaction info (#373)
* fix haven transaction info * fix format
This commit is contained in:
parent
b58b0002b0
commit
e6fe4676ca
1 changed files with 3 additions and 3 deletions
|
@ -297,9 +297,9 @@ class CWHaven extends Haven {
|
|||
}
|
||||
|
||||
CryptoCurrency assetOfTransaction(TransactionInfo tx) {
|
||||
final tx = transaction as HavenTransactionInfo;
|
||||
final asset = CryptoCurrency.fromString(tx.assetType);
|
||||
return asset;
|
||||
final transaction = tx as HavenTransactionInfo;
|
||||
final asset = CryptoCurrency.fromString(transaction.assetType);
|
||||
return asset;
|
||||
}
|
||||
|
||||
List<AssetRate> getAssetRate()
|
||||
|
|
Loading…
Reference in a new issue