Show / Hide Table of Contents

Enum SignerListFlags

Flags of a SignerList ledger object.

Namespace: Xrpl.Models.Ledger
Assembly: Xrpl.dll
Syntax
[Flags]
public enum SignerListFlags : uint
Remarks

Flags stays a raw uint for backwards compatibility, but is nullable (absent e.g. inside PreviousFields). A lifted != returns true when either side is null, so check presence explicitly: list.Flags is { } f && (f & (uint)SignerListFlags.lsfOneOwnerCount) != 0.

Fields

Name Description
lsfOneOwnerCount

The signer list counts as one item against the owner reserve rather than one per signer entry (set on every list created since MultiSignReserve).

Extension Methods

EmumExtensions.DecodeFlags<SignerListFlags>(SignerListFlags)
EmumExtensions.FlagsValues<SignerListFlags>(SignerListFlags)
  • Edit this page
  • View Source
In this article
Back to top Generated by DocFX