mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-03-06 10:32:13 +01:00
9 lines
215 B
C#
9 lines
215 B
C#
|
using BTCPayServer.PayoutProcessors.Settings;
|
|||
|
|
|||
|
namespace BTCPayServer.PayoutProcessors.OnChain;
|
|||
|
|
|||
|
public class OnChainAutomatedPayoutBlob : AutomatedPayoutBlob
|
|||
|
{
|
|||
|
public int FeeTargetBlock { get; set; } = 1;
|
|||
|
}
|