Anders Brownworth
Anders Brownworth
Yeah, interesting you bring this up - James and I have had a few discussions about the first one. I think the watchtower is really just a set of functionality,...
Not your core key parsing issue but in the case of `ed25519` you can't `sign.update(message);` because streaming isn't supported - you have to do that in a single shot instead....
Seems to work for me. (culled your code down a bit) ``` const crypto = require('crypto'); const { publicKey, privateKey } = crypto.generateKeyPairSync('ed25519'); const message = 'Hello world!'; console.log(message); const...
Why do you want to have more than 3 peers? Also, this PR seems to adjust a bunch of formatting / remove a bunch of comments.
Can you remove all the formatting changes (`'` to `"` conversions and added commas / spaces) and rebase against latest?