Class FinalizationSummaryParty
- Namespace
- Concordium.Sdk.Types
- Assembly
- Concordium.Sdk.dll
Details of a party in a finalization.
public sealed record FinalizationSummaryParty : IEquatable<FinalizationSummaryParty>
- Inheritance
-
FinalizationSummaryParty
- Implements
- Inherited Members
Constructors
FinalizationSummaryParty(BakerId, ulong, bool)
Details of a party in a finalization.
public FinalizationSummaryParty(BakerId BakerId, ulong Weight, bool SignaturePresent)
Parameters
BakerId
BakerIdThe identity of the baker.
Weight
ulongThe party's relative weight in the committee
SignaturePresent
boolWhether the party's signature is present
Properties
BakerId
The identity of the baker.
public BakerId BakerId { get; init; }
Property Value
SignaturePresent
Whether the party's signature is present
public bool SignaturePresent { get; init; }
Property Value
Weight
The party's relative weight in the committee
public ulong Weight { get; init; }