Set pubsub options with sign/strictsign off
This commit is contained in:
parent
6c445a9c5d
commit
24ca07fd1c
|
@ -43,6 +43,12 @@ const createLibp2p = async (peerId) => {
|
|||
randomWalk: {
|
||||
enabled: true
|
||||
}
|
||||
},
|
||||
pubsub: {
|
||||
enabled: true,
|
||||
emitSelf: true,
|
||||
signMessages: false,
|
||||
strictSigning: false
|
||||
}
|
||||
}
|
||||
})
|
||||
|
|
|
@ -58,6 +58,12 @@ const multiaddr = require('multiaddr')
|
|||
randomWalk: {
|
||||
enabled: true
|
||||
}
|
||||
},
|
||||
pubsub: {
|
||||
enabled: true,
|
||||
emitSelf: true,
|
||||
signMessages: false,
|
||||
strictSigning: false
|
||||
}
|
||||
}
|
||||
})
|
||||
|
|
Loading…
Reference in New Issue