feat: add event kind 41 to replaceable events list

This commit is contained in:
Vlad Stan 2023-02-16 16:56:40 +02:00
parent a120394304
commit 7d98bc1deb

View file

@ -167,7 +167,7 @@ class NostrEvent(BaseModel):
@property
def is_replaceable_event(self) -> bool:
return self.kind in [0, 3]
return self.kind in [0, 3, 41]
@property
def is_auth_response_event(self) -> bool: