Add AlwaysIncludeNonWitnessUTXO to Wallet Send

This commit is contained in:
Kukks
2020-06-12 13:58:55 +02:00
parent 1889c33d80
commit b7c65b2ba6
4 changed files with 12 additions and 1 deletions

View File

@@ -45,6 +45,8 @@ namespace BTCPayServer.Controllers
if (sendModel.AllowFeeBump is WalletSendModel.ThreeStateBool.No)
psbtRequest.RBF = false;
}
psbtRequest.AlwaysIncludeNonWitnessUTXO = sendModel.AlwaysIncludeNonWitnessUTXO;
psbtRequest.FeePreference = new FeePreference();
if (sendModel.FeeSatoshiPerByte is decimal v &&