Marco D'Agostini

Results 16 comments of Marco D'Agostini

Ok, I understand, but I didn't touch that part of the code. If you are interested in making those changes yourself, this is the relevant code that allows P2SH(P2WPKH) ```python...

I doubt to be qualified enough to maintain it, but I can help!

This is relevant https://playwright.dev/docs/test-components#i-have-a-project-that-already-uses-vite-can-i-reuse-the-config Playwright-for-Svelte uses its own vite internally, so it has a way to inject configs to it ```js import { defineConfig } from '@playwright/experimental-ct-svelte'; export default defineConfig({...

Happened to me today, I'm using Linux. I had to replace the pnpm PATH in my `.zshrc` from `~` to `$HOME`, so it looks like this: export PNPM_HOME="$HOME/.local/share/pnpm"

Very similar error for me ``` error: no pg_hba.conf entry for host "redacted", user "redacted", database "redacted", SSL off at Parser.parseErrorMessage (/home/redacted/node_modules/pg-protocol/dist/parser.js:241:15) at Parser.handlePacket (/home/redacted/node_modules/pg-protocol/dist/parser.js:89:29) at Parser.parse (/home/redacted/node_modules/pg-protocol/dist/parser.js:41:38) at Socket....

I solved the `Error: self signed certificate` with: ssl: { rejectUnauthorized: false } As explained in this thread https://github.com/brianc/node-postgres/issues/2009