Table of Contents

Class TxInitRbfPayload

Namespace
NLightning.Domain.Protocol.Payloads
Assembly
NLightning.Domain.dll

Represents the payload for the tx_init_rbf message.

public class TxInitRbfPayload : IMessagePayload
Inheritance
TxInitRbfPayload
Implements
Inherited Members

Remarks

The tx_init_rbf message is used to initialize a new RBF transaction.

Constructors

TxInitRbfPayload(ChannelId, uint, uint)

Represents the payload for the tx_init_rbf message.

public TxInitRbfPayload(ChannelId channelId, uint feerate, uint locktime)

Parameters

channelId ChannelId

The channel ID.

feerate uint

The feerate.

locktime uint

The locktime.

Remarks

The tx_init_rbf message is used to initialize a new RBF transaction.

See Also

Properties

ChannelId

The channel ID.

public ChannelId ChannelId { get; }

Property Value

ChannelId

Feerate

The feerate.

public uint Feerate { get; }

Property Value

uint

Locktime

The locktime.

public uint Locktime { get; }

Property Value

uint

See Also