mirror of
https://github.com/fiatjaf/nak.git
synced 2025-12-08 16:48:51 +00:00
9 lines
138 B
Go
9 lines
138 B
Go
package nostrfs
|
|
|
|
import "strconv"
|
|
|
|
func hexToUint64(hexStr string) uint64 {
|
|
v, _ := strconv.ParseUint(hexStr[16:32], 16, 64)
|
|
return v
|
|
}
|