more fixes

This commit is contained in:
Believethehype 2024-11-14 13:32:16 +01:00
parent 4e03a774ba
commit a39a9a291c
2 changed files with 2 additions and 2 deletions

View File

@ -236,7 +236,7 @@ async def send_event_outbox(event: Event, client, dvm_config) -> EventId:
event_id = None
print(e)
for relay in relays:
for relay in relays[:5]:
try:
await outboxclient.force_remove_relay(relay)
except:

View File

@ -69,6 +69,6 @@ AVOID_OUTBOX_RELAY_LIST = ["wss://nos.lol",
"wss://relay.f7z.io", "wss://nostr-relay.h3z.jp", "wss://nfrelay.app",
"wss://r.kojira.io", "wss://jp-relay-nostr.invr.chat",
"wss://nostream-production-5895.up.railway.app",
"ws://127.0.0.1:4869", "wss://sign.siamstr.com"
"ws://127.0.0.1:4869", "wss://sign.siamstr.com", "wss://relay.hash.stream"
]