mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2025-02-02 03:06:35 +00:00
Merge branch 'mweb' of https://github.com/cake-tech/cake_wallet into mweb-bg-sync-2
This commit is contained in:
commit
8034d9111e
2 changed files with 3 additions and 2 deletions
|
@ -254,6 +254,7 @@ abstract class LitecoinWalletBase extends ElectrumWallet with Store {
|
|||
if (!mwebEnabled) {
|
||||
try {
|
||||
await updateAllUnspents();
|
||||
await updateTransactions();
|
||||
await updateBalance();
|
||||
syncStatus = SyncedSyncStatus();
|
||||
} catch (e, s) {
|
||||
|
@ -911,7 +912,7 @@ abstract class LitecoinWalletBase extends ElectrumWallet with Store {
|
|||
}).toList())
|
||||
.toHex();
|
||||
tx.outputAddresses = resp.outputId;
|
||||
|
||||
|
||||
return tx
|
||||
..addListener((transaction) async {
|
||||
final addresses = <String>{};
|
||||
|
|
|
@ -60,7 +60,7 @@ class TransactionRow extends StatelessWidget {
|
|||
fontWeight: FontWeight.w500,
|
||||
color: Theme.of(context).extension<DashboardPageTheme>()!.textColor,
|
||||
)),
|
||||
...tags.map((tag) => TxTag(tag: tag)).toList(),
|
||||
...tags.map((tag) => Row(children: [SizedBox(width: 8), TxTag(tag: tag)])),
|
||||
],
|
||||
),
|
||||
Text(formattedAmount,
|
||||
|
|
Loading…
Reference in a new issue