mirror of https://github.com/status-im/js-waku.git
Remove message signing as per waku specs
This commit is contained in:
parent
b5bf5c03ab
commit
525815528f
|
@ -17,6 +17,16 @@ export async function createNode() {
|
||||||
// @ts-ignore: Type needs update
|
// @ts-ignore: Type needs update
|
||||||
pubsub: Gossipsub,
|
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();
|
await node.start();
|
||||||
|
|
Loading…
Reference in New Issue