Skip to content
Open
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/ChannelOperationRequest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,11 @@ public decimal Amount
/// </summary>
public string? TxId { get; set; }

/// <summary>
/// Mining fee paid in satoshis, computed from the finalised PSBT once the funding tx is confirmed
/// </summary>
public long? FeeSats { get; set; }

/// <summary>
/// Text filled by the user upon request cancellation/rejection
/// </summary>
Expand Down
5 changes: 5 additions & 0 deletions src/Data/Models/WalletWithdrawalRequest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,11 @@
/// </summary>
public string? TxId { get; set; }

/// <summary>
/// Mining fee paid in satoshis, computed from the finalised PSBT once the tx is confirmed
/// </summary>
public long? FeeSats { get; set; }

/// <summary>
/// For additional info required by the requestor
/// </summary>
Expand Down Expand Up @@ -192,7 +197,7 @@
public ApplicationUser UserRequestor { get; set; }
public int WalletId { get; set; }

public Wallet Wallet { get; set; }

Check warning on line 200 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