Skip to content

Commit

Permalink
Fix CF
Browse files Browse the repository at this point in the history
  • Loading branch information
ichthus1604 committed Apr 21, 2024
1 parent 464a7fa commit 9931474
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions WalletWasabi.Fluent/Models/Transactions/SendParameters.cs
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ public record SendParameters(

public Money AvailableAmount => AvailableCoins.TotalAmount();

public IEnumerable<(LabelsArray Labels, ICoinsView Coins)> GetPockets() => AvailableCoins.GetPockets(Wallet.AnonScoreTarget);

public bool IsManual => AvailableCoins.TotalAmount() != Wallet.Coins.TotalAmount();

public IEnumerable<(LabelsArray Labels, ICoinsView Coins)> GetPockets() => AvailableCoins.GetPockets(Wallet.AnonScoreTarget);
}
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@
using WalletWasabi.Fluent.Models.Wallets;
using WalletWasabi.Fluent.ViewModels.Wallets.Labels;
using WalletWasabi.Userfacing.Bip21;
using Constants = WalletWasabi.Helpers.Constants;
using WalletWasabi.Fluent.Models.Transactions;
using Constants = WalletWasabi.Helpers.Constants;

namespace WalletWasabi.Fluent.ViewModels.Wallets.Send;

Expand Down

0 comments on commit 9931474

Please sign in to comment.