Evgeny

Results 388 comments of Evgeny

> ctx.res Node's response object. Bypassing Koa's response handling is not supported. Avoid using the following node properties: res.statusCode res.writeHead() res.write() res.end() https://koajs.com/#ctx-res

```js // create webhook only ONCE const webhook = await bot.createWebhook({ domain: webhookDomain }); app.use(async (ctx, next) => { // use ctx.request to have access to body await webhook(ctx.request, ctx.res,...

I've faced the same issue...

Why is the documentation written in a way that clearly doesn’t work?

Related issue https://github.com/cdimascio/express-openapi-validator/issues/660

Ping ⏰ Why is it not merged?

I'm working on implementing the following method on js: https://github.com/monero-project/monero/blob/v0.17.1.9/src/crypto/crypto-ops.c#L1334-L1424 There are several test cases: https://github.com/monero-project/monero/blob/v0.17.1.9/tests/crypto/tests.txt (rows starts with `check_key`). The following test reports **false positive** results using `decodePoint` and...

One more observation: `decodePoint` from bytes and `encodePoint` from point produces the different bytes. ```js import BN from 'bn.js'; import elliptic from 'elliptic'; const hex = 'ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff'; console.log('original:', hex); //...

@indutny congrats with the new job in signalapp but could you please have a look at this issue 😃