mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2024-11-17 17:57:40 +00:00
Merge remote-tracking branch 'origin_SW/staging' into add_frost
This commit is contained in:
commit
911837b265
4 changed files with 11 additions and 3 deletions
|
@ -138,7 +138,7 @@ class _Step4ViewState extends ConsumerState<Step4View> {
|
|||
Future<bool?> _showSendFromFiroBalanceSelectSheet(String walletId) async {
|
||||
final coin = ref.read(pWalletCoin(walletId));
|
||||
final balancePublic = ref.read(pWalletBalance(walletId));
|
||||
final balancePrivate = ref.read(pWalletBalanceSecondary(walletId));
|
||||
final balancePrivate = ref.read(pWalletBalanceTertiary(walletId));
|
||||
|
||||
return await showModalBottomSheet<bool?>(
|
||||
context: context,
|
||||
|
|
|
@ -198,6 +198,11 @@ class _FavoriteCardState extends ConsumerState<FavoriteCard> {
|
|||
pWalletBalanceSecondary(walletId),
|
||||
)
|
||||
.total;
|
||||
total += ref
|
||||
.watch(
|
||||
pWalletBalanceTertiary(walletId),
|
||||
)
|
||||
.total;
|
||||
}
|
||||
|
||||
Amount fiatTotal = Amount.zero;
|
||||
|
|
|
@ -294,6 +294,7 @@ class _BalanceDisplay extends ConsumerWidget {
|
|||
Amount total = ref.watch(pWalletBalance(walletId)).total;
|
||||
if (coin == Coin.firo || coin == Coin.firoTestNet) {
|
||||
total += ref.watch(pWalletBalanceSecondary(walletId)).total;
|
||||
total += ref.watch(pWalletBalanceTertiary(walletId)).total;
|
||||
}
|
||||
|
||||
return Text(
|
||||
|
|
|
@ -51,9 +51,11 @@ class _ManagedFavoriteCardState extends ConsumerState<ManagedFavorite> {
|
|||
|
||||
Amount total = ref.watch(pWalletBalance(walletId)).total;
|
||||
if (coin == Coin.firo || coin == Coin.firoTestNet) {
|
||||
final balancePrivate = ref.watch(pWalletBalanceSecondary(walletId));
|
||||
final balancePrivate =
|
||||
ref.watch(pWalletBalanceSecondary(walletId)).total +
|
||||
ref.watch(pWalletBalanceTertiary(walletId)).total;
|
||||
|
||||
total += balancePrivate.total;
|
||||
total += balancePrivate;
|
||||
}
|
||||
|
||||
final isFavourite = ref.watch(pWalletIsFavourite(walletId));
|
||||
|
|
Loading…
Reference in a new issue