pub fn evaluate_sequence_locks(
block_height: u64,
block_time: u64,
lock_pair: (i64, i64),
) -> boolExpand description
Evaluate if sequence locks are satisfied
Checks if the current block height and time satisfy the sequence lock constraints.
Matches consensus’s EvaluateSequenceLocks() exactly.
§Arguments
block_height- Current block heightblock_time- Current block’s median time-pastlock_pair- (min_height, min_time) from calculate_sequence_locks
§Returns
true if locks are satisfied, false otherwise