pool: skip event verification

This commit is contained in:
Alex Gleason
2024-07-20 13:38:56 -05:00
parent 9cb85e42d2
commit 4304715c1e

View File

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