Table of Contents

Class TxRemoveOutputPayload

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

Represents a tx_remove_output payload.

public class TxRemoveOutputPayload : IMessagePayload
Inheritance
TxRemoveOutputPayload
Implements
Inherited Members

Remarks

The tx_remove_output payload is used to remove an output from the transaction.

Constructors

TxRemoveOutputPayload(ChannelId, ulong)

Represents a tx_remove_output payload.

public TxRemoveOutputPayload(ChannelId channelId, ulong serialId)

Parameters

channelId ChannelId

The channel id.

serialId ulong

The serial id.

Remarks

The tx_remove_output payload is used to remove an output from the transaction.

See Also

Properties

ChannelId

The channel id.

public ChannelId ChannelId { get; }

Property Value

ChannelId

SerialId

The serial id.

public ulong SerialId { get; }

Property Value

ulong

See Also