pool: skip event verification

This commit is contained in:
Alex Gleason 2024-07-20 13:38:56 -05:00
parent 9cb85e42d2
commit 4304715c1e
No known key found for this signature in database
GPG key ID: 7211D1F99744FBB7

View file

@ -65,7 +65,10 @@ export class Storages {
return new NPool({ return new NPool({
open(url) { open(url) {
return new NRelay1(url); return new NRelay1(url, {
// Skip event verification (it's done in the pipeline).
verifyEvent: () => true,
});
}, },
reqRouter: async (filters) => { reqRouter: async (filters) => {
return new Map(activeRelays.map((relay) => { return new Map(activeRelays.map((relay) => {