btcpayserver/BTCPayServer/PayoutProcessors/OnChain/OnChainAutomatedPayoutBlob.cs
Andrew Camilleri 7c8f4c0405
Allow specifing fee block target for onchain payout processor (#4065)
Co-authored-by: d11n <mail@dennisreimann.de>
2022-08-23 12:35:20 +02:00

8 lines
215 B
C#

using BTCPayServer.PayoutProcessors.Settings;
namespace BTCPayServer.PayoutProcessors.OnChain;
public class OnChainAutomatedPayoutBlob : AutomatedPayoutBlob
{
public int FeeTargetBlock { get; set; } = 1;
}