Rename locktime tests

Existing display tests only test lock by block height.  New tests are
needed for lock by block time.

Change existing test names to make it clear which type of locktime is
being tested.
This commit is contained in:
Jamil Lambert, PhD 2025-04-30 16:30:56 +01:00
parent 8a0e645dfd
commit eb7dee831e
No known key found for this signature in database
GPG Key ID: 54DC29234AB5D2C0
1 changed files with 4 additions and 4 deletions

View File

@ -37,11 +37,11 @@ check! {
fee_rate_max, FeeRate, FeeRate::MAX, "18446744073709551615"; fee_rate_max, FeeRate, FeeRate::MAX, "18446744073709551615";
fee_rate_dust, FeeRate, FeeRate::DUST, "750"; fee_rate_dust, FeeRate, FeeRate::DUST, "750";
lock_time_absolute_min, absolute::Height, absolute::Height::MIN, "0"; lock_by_height_absolute_min, absolute::Height, absolute::Height::MIN, "0";
lock_time_absolute_max, absolute::Height, absolute::Height::MAX, "499999999"; lock_by_height_absolute_max, absolute::Height, absolute::Height::MAX, "499999999";
lock_time_relative_min, relative::Height, relative::Height::MIN, "0"; lock_by_height_relative_min, relative::Height, relative::Height::MIN, "0";
lock_time_relative_max, relative::Height, relative::Height::MAX, "65535"; lock_by_height_relative_max, relative::Height, relative::Height::MAX, "65535";
weight_min, Weight, Weight::MIN, "0"; weight_min, Weight, Weight::MIN, "0";
weight_max, Weight, Weight::MAX, "18446744073709551615"; weight_max, Weight, Weight::MAX, "18446744073709551615";