diff --git a/damus/Nostr/NostrEvent.swift b/damus/Nostr/NostrEvent.swift index 739f7578..39af4ba7 100644 --- a/damus/Nostr/NostrEvent.swift +++ b/damus/Nostr/NostrEvent.swift @@ -448,7 +448,7 @@ func hex_encode(_ data: Data) -> String { func random_bytes(count: Int) -> Data { var data = Data(count: count) _ = data.withUnsafeMutableBytes { mutableBytes in - SecRandomCopyBytes(kSecRandomDefault, count, mutableBytes) + SecRandomCopyBytes(kSecRandomDefault, count, mutableBytes.baseAddress!) } return data }