btcpayserver/BTCPayServer/GetMempoolInfoResponse.cs
2025-03-11 17:44:18 +09:00

11 lines
282 B
C#

using NBitcoin;
namespace BTCPayServer
{
public class GetMempoolInfoResponse
{
public FeeRate IncrementalRelayFeeRate { get; internal set; }
public FeeRate MempoolMinfeeRate { get; internal set; }
public bool? FullRBF { get; internal set; }
}
}