Table of Contents

Class SendPeer

Namespace
chia.dotnet
Assembly
chia-dotnet.dll

Represents the list of peers that we sent the transaction to, whether each one included it in the mempool, and what the error message (if any) was

[JsonConverter(typeof(SendPeerConverter))]
public record SendPeer : IEquatable<SendPeer>
Inheritance
SendPeer
Implements
Inherited Members
Extension Methods

Remarks

Represented as List[Tuple[str, uint8, Optional[str]]] in python

Properties

ErrorMessage

public string? ErrorMessage { get; init; }

Property Value

string
Represents the list of peers that we sent the transaction to, whether each one included it in the mempool, and what the error message (if any) was

MempoolInclusionStatus

public MempoolInclusionStatus MempoolInclusionStatus { get; init; }

Property Value

MempoolInclusionStatus
Represents the list of peers that we sent the transaction to, whether each one included it in the mempool, and what the error message (if any) was

Peer

public string Peer { get; init; }

Property Value

string
Represents the list of peers that we sent the transaction to, whether each one included it in the mempool, and what the error message (if any) was