Struct CsvMaturityResult
Result of a BIP-68 relative-timelock maturity check.
public readonly record struct CsvMaturityResult : IEquatable<CsvMaturityResult>
- Implements
- Inherited Members
Constructors
CsvMaturityResult(bool, string)
Result of a BIP-68 relative-timelock maturity check.
public CsvMaturityResult(bool IsMatured, string Progress)
Parameters
IsMaturedboolTrue once the relative lock on the exit input has elapsed and the claim transaction can be accepted by the network.
ProgressstringHuman-readable "where we are vs where we need to be", for logs. Blocks for a height-based lock, median-time-past timestamps for a time-based one.
Properties
IsMatured
True once the relative lock on the exit input has elapsed and the claim transaction can be accepted by the network.
public bool IsMatured { get; init; }
Property Value
Progress
Human-readable "where we are vs where we need to be", for logs. Blocks for a height-based lock, median-time-past timestamps for a time-based one.
public string Progress { get; init; }