From 0d8e2f0d4ab4eb47e4348ae918a63fe6bf3d3c50 Mon Sep 17 00:00:00 2001 From: "nicolas.dorier" Date: Thu, 3 Sep 2020 17:27:48 +0900 Subject: [PATCH] Fix bug: The wallet was sending only round amount of sat per byte --- BTCPayServer/Controllers/WalletsController.PSBT.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BTCPayServer/Controllers/WalletsController.PSBT.cs b/BTCPayServer/Controllers/WalletsController.PSBT.cs index 3f48ea373..cb43843a2 100644 --- a/BTCPayServer/Controllers/WalletsController.PSBT.cs +++ b/BTCPayServer/Controllers/WalletsController.PSBT.cs @@ -51,7 +51,7 @@ namespace BTCPayServer.Controllers if (sendModel.FeeSatoshiPerByte is decimal v && v > decimal.Zero) { - psbtRequest.FeePreference.ExplicitFeeRate = new FeeRate(Money.Satoshis(v), 1); + psbtRequest.FeePreference.ExplicitFeeRate = new FeeRate(v); } if (sendModel.NoChange) {