remove unused `type` in `makeLimitedUInt` (#5354)
The `type L` definition inside `makeLimitedUInt` is unused. Remove it.
This commit is contained in:
parent
758c503a52
commit
9637d3f8d0
|
@ -550,10 +550,6 @@ func getImmutableValidatorData*(validator: Validator): ImmutableValidatorData2 =
|
|||
withdrawal_credentials: validator.withdrawal_credentials)
|
||||
|
||||
template makeLimitedUInt*(T: untyped, limit: SomeUnsignedInt) =
|
||||
# A "tigher" type is often used for T, but for the range check to be effective
|
||||
# it must make sense..
|
||||
type L = typeof limit
|
||||
|
||||
static: doAssert limit <= distinctBase(T).high()
|
||||
# Many `uint64` values in the spec have a more limited range of valid values
|
||||
func init*(t: type T, value: uint64): Result[T, cstring] =
|
||||
|
|
Loading…
Reference in New Issue