Skip to content

Commit

Permalink
Remove created at
Browse files Browse the repository at this point in the history
  • Loading branch information
KoalaSat committed Aug 7, 2024
1 parent 3433f45 commit d79f27b
Showing 1 changed file with 4 additions and 9 deletions.
13 changes: 4 additions & 9 deletions api/nostr.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import uuid

from asgiref.sync import sync_to_async
from nostr_sdk import Keys, Client, EventBuilder, NostrSigner, Kind, Tag, Timestamp
from nostr_sdk import Keys, Client, EventBuilder, NostrSigner, Kind, Tag
from api.models import Order
from decouple import config

Expand All @@ -30,15 +30,10 @@ async def send_order_event(self, order):

robot_name = await self.get_robot_name(order)
currency = await self.get_robot_currency(order)
created_at = Timestamp.from_secs(int(order.created_at.timestamp()))

event = (
EventBuilder(
Kind(38383), "", self.generate_tags(order, robot_name, currency)
)
.custom_created_at(created_at)
.to_event(keys)
)
event = EventBuilder(
Kind(38383), "", self.generate_tags(order, robot_name, currency)
).to_event(keys)
await client.send_event(event)
print(f"Nostr event sent: {event.as_json()}")

Expand Down

0 comments on commit d79f27b

Please sign in to comment.