Fix the RBS signature of User#create_event

This commit is contained in:
Wilson Silva 2023-02-25 15:00:30 +07:00
parent 79567fcf22
commit 2fc56a2b1a
No known key found for this signature in database
GPG Key ID: 65135F94E23F82C8

View File

@ -6,14 +6,12 @@ module Nostr
def initialize: (?keypair: KeyPair | nil, ?keygen: Keygen) -> void
def create_event: (
{
id: String,
pubkey: String,
created_at: Integer,
kind: Integer,
tags: Array[String],
content: String,
created_at: Integer,
sig: String
}
) -> Event