Table of Contents

Class ConsensusParametersV1

Namespace
Concordium.Grpc.V2
Assembly
Concordium.Sdk.dll

Parameters for the consensus protocol used from protocol version 6.

public sealed class ConsensusParametersV1 : IMessage<ConsensusParametersV1>, IEquatable<ConsensusParametersV1>, IDeepCloneable<ConsensusParametersV1>, IBufferMessage, IMessage
Inheritance
ConsensusParametersV1
Implements
IDeepCloneable<ConsensusParametersV1>
IBufferMessage
IMessage
Inherited Members

Constructors

ConsensusParametersV1()

public ConsensusParametersV1()

ConsensusParametersV1(ConsensusParametersV1)

public ConsensusParametersV1(ConsensusParametersV1 other)

Parameters

other ConsensusParametersV1

Fields

BlockEnergyLimitFieldNumber

Field number for the "block_energy_limit" field.

public const int BlockEnergyLimitFieldNumber = 3

Field Value

int

MinBlockTimeFieldNumber

Field number for the "min_block_time" field.

public const int MinBlockTimeFieldNumber = 2

Field Value

int

TimeoutParametersFieldNumber

Field number for the "timeout_parameters" field.

public const int TimeoutParametersFieldNumber = 1

Field Value

int

Properties

BlockEnergyLimit

Maximum energy allowed per block.

public Energy BlockEnergyLimit { get; set; }

Property Value

Energy

Descriptor

public static MessageDescriptor Descriptor { get; }

Property Value

MessageDescriptor

MinBlockTime

Minimum time interval between blocks.

public Duration MinBlockTime { get; set; }

Property Value

Duration

Parser

public static MessageParser<ConsensusParametersV1> Parser { get; }

Property Value

MessageParser<ConsensusParametersV1>

TimeoutParameters

Parameters controlling round timeouts.

public TimeoutParameters TimeoutParameters { get; set; }

Property Value

TimeoutParameters

Methods

CalculateSize()

Calculates the size of this message in Protocol Buffer wire format, in bytes.

public int CalculateSize()

Returns

int

The number of bytes required to write this message to a coded output stream.

Clone()

Creates a deep clone of this object.

public ConsensusParametersV1 Clone()

Returns

ConsensusParametersV1

A deep clone of this object.

Equals(ConsensusParametersV1)

Indicates whether the current object is equal to another object of the same type.

public bool Equals(ConsensusParametersV1 other)

Parameters

other ConsensusParametersV1

An object to compare with this object.

Returns

bool

true if the current object is equal to the other parameter; otherwise, false.

Equals(object)

Determines whether the specified object is equal to the current object.

public override bool Equals(object other)

Parameters

other object

Returns

bool

true if the specified object is equal to the current object; otherwise, false.

GetHashCode()

Serves as the default hash function.

public override int GetHashCode()

Returns

int

A hash code for the current object.

MergeFrom(ConsensusParametersV1)

Merges the given message into this one.

public void MergeFrom(ConsensusParametersV1 other)

Parameters

other ConsensusParametersV1

Remarks

See the user guide for precise merge semantics.

MergeFrom(CodedInputStream)

Merges the data from the specified coded input stream with the current message.

public void MergeFrom(CodedInputStream input)

Parameters

input CodedInputStream

Remarks

See the user guide for precise merge semantics.

ToString()

Returns a string that represents the current object.

public override string ToString()

Returns

string

A string that represents the current object.

WriteTo(CodedOutputStream)

Writes the data to the given coded output stream.

public void WriteTo(CodedOutputStream output)

Parameters

output CodedOutputStream

Coded output stream to write the data to. Must not be null.