Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions src/Data/Models/WalletWithdrawalRequest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -147,6 +147,11 @@
/// </summary>
public decimal? CustomFeeRate { get; set; }

/// <summary>
/// Coin selection strategy requested for this withdrawal. Null means the requestor did not pick one.
/// </summary>
public CoinSelectionStrategy? CoinSelectionStrategy { get; set; }

/// <summary>
/// Check that the number of signatures (not finalised psbt nor internal wallet psbt or template psbt are gathered and increases by one to count on the internal wallet signature
/// </summary>
Expand Down Expand Up @@ -211,7 +216,7 @@
public ApplicationUser UserRequestor { get; set; }
public int WalletId { get; set; }

public Wallet Wallet { get; set; }

Check warning on line 219 in src/Data/Models/WalletWithdrawalRequest.cs

View workflow job for this annotation

GitHub Actions / unit-test

Nullability of reference types in type of parameter 'value' of 'void WalletWithdrawalRequest.Wallet.set' doesn't match implicitly implemented member 'void IBitcoinRequest.Wallet.set' (possibly because of nullability attributes).

public int? BumpingWalletWithdrawalRequestId { get; set; }

Expand Down
Loading
Loading