Update VersionDataFetcher KDoc

This commit is contained in:
bemusementpark
2024-08-01 10:34:45 +09:30
parent 72d77a9caf
commit 5c4e95c4ec
2 changed files with 4 additions and 7 deletions

View File

@@ -131,10 +131,7 @@ object FileServerApi {
val signature = BlindKeyAPI.blindVersionSign(secretKey, timestamp)
// The hex encoded version-blinded public key with a 07 prefix
val blindedPkHex = buildString {
append("07")
append(blindedKeys.pubKey.toHexString())
}
val blindedPkHex = "07" + blindedKeys.pubKey.toHexString()
val request = Request(
verb = HTTP.Verb.GET,