mirror of
https://github.com/aljazceru/btcpayserver.git
synced 2025-12-17 22:14:26 +01:00
Fix bug: The wallet was sending only round amount of sat per byte
This commit is contained in:
@@ -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)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user