Julien Fraichot

Results 19 comments of Julien Fraichot

Hi @axelpale, Thanks for the swift response and look into this issue. For me, not having the version within git is not an issue, we have the release notes published...

I have found that I was doing this already in a different project ``` module.exports = { 'plugins': [ '@semantic-release/commit-analyzer', '@semantic-release/release-notes-generator', '@semantic-release/npm', '@semantic-release/github', ['@semantic-release/exec', { // eslint-disable-next-line no-template-curly-in-string 'publishCmd': 'npm...

@devoto13, That solved it. I had taken the property from the tsc readme and didn't realize I was overwriting the (default) rule. Thank you

Hi, I have a similar error that arose today with a context that's been online for ages (2016). I have updated jsonld library from 1.8.1 to 5.2.0 and now it...

This solution worked for me: https://stackoverflow.com/a/66687075/4064775 ``` import crypto from "crypto"; Object.defineProperty(global.self, "crypto", { value: { subtle: crypto.webcrypto.subtle, }, }); ``` in your setup file (for jest). With node 15.

So at the node level the error was correct, but at the client level (where the call was made for the registration), the only feedback I was getting was "successful...

Thanks for your reply, I get the logic behind it. However it seems I didn't have the challenge endpoint on my local node?

@csuwildcat it's too early for me to know exactly what we'll need since I'm still at PoC stage. I think we have a catch up today so we can discuss...

It looks like it's coming from the blocks this are the last 2 blocks being parsed, as read from this method https://github.com/decentralized-identity/sidetree/blob/master/lib/bitcoin/BitcoinRawDataParser.ts#L88: ``` Input { prevTxId: , outputIndex: 4294967295, _scriptBuffer:...

So to unstuck me I changed this line: https://github.com/decentralized-identity/sidetree/blob/master/lib/bitcoin/BitcoinBlockDataIterator.ts#L23 to not parse the last block. It seems now that ION node is running when `npm run bitcoin` and does not...