mirror of
https://gitlab.com/soapbox-pub/ditto.git
synced 2025-12-06 11:29:46 +00:00
pool: skip event verification
This commit is contained in:
parent
9cb85e42d2
commit
4304715c1e
1 changed files with 4 additions and 1 deletions
|
|
@ -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) => {
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue