Remove message signing as per waku specs

This commit is contained in:
Franck Royer 2021-03-10 14:58:04 +11:00
parent b5bf5c03ab
commit 525815528f
No known key found for this signature in database
GPG Key ID: A82ED75A8DFC50A4
1 changed files with 10 additions and 0 deletions

View File

@ -17,6 +17,16 @@ export async function createNode() {
// @ts-ignore: Type needs update
pubsub: Gossipsub,
},
config: {
pubsub: {
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
// @ts-ignore
enabled: true,
emitSelf: true,
signMessages: false,
strictSigning: false,
},
},
});
await node.start();