Allow excluding unconfirmed UTXOs when creating a new transaction with Greenfield API

See original request: https://github.com/btcpayserver/btcpayserver/discussions/3737
This commit is contained in:
Umar Bolatov
2022-06-09 20:58:51 -07:00
committed by Andrew Camilleri
parent fd3d389557
commit d0e01768ab
6 changed files with 37 additions and 4 deletions

View File

@@ -26,5 +26,6 @@ namespace BTCPayServer.Client.Models
public List<CreateOnChainTransactionRequestDestination> Destinations { get; set; }
[JsonProperty("rbf")]
public bool? RBF { get; set; } = null;
public bool ExcludeUnconfirmed { get; set; } = false;
}
}