chore: cosmetic changes

This commit is contained in:
munna0908 2025-05-22 16:50:09 +05:30
parent 84943dbed9
commit 587c834c0e
No known key found for this signature in database
GPG Key ID: 2FFCD637E937D3E6

View File

@ -93,7 +93,6 @@ proc nextUInt*(c: var CborParser): ?!BiggestUInt =
let val = c.intVal.BiggestUInt
?c.next()
return success(val)
@ -109,7 +108,6 @@ proc nextInt*(c: var CborParser): ?!BiggestInt =
return failure(newCborError("Expected integer, got " & $c.kind))
?c.next()
return success(val)
proc nextFloat*(c: var CborParser): ?!float64 =
@ -128,7 +126,6 @@ proc nextFloat*(c: var CborParser): ?!float64 =
discard
?c.next()
return success(val)
func bytesLen*(c: CborParser): ?!int =