Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Runtime upgrade with dev console + smoldot spins indefinitely with console errors #35

Open
seadanda opened this issue Feb 26, 2025 · 3 comments

Comments

@seadanda
Copy link

I tried using the dev console with the light client to system.apply_authorized_upgrade.

This involves uploading the wasm and submitting unsigned (to avoid hefty fees), but when I submitted it I get a transaction when moves to state transaction signed as shown below

Image

then hangs there indefinitely. In the console logs I can see that a websocket connection fails:

WebSocket connection to 'wss://boot-polkadot.luckyfriday.io/' failed:
connect$1 | @ | index-p-BkVK_1.js:28

It iterates through the bootnodes with this same error, then I just get

Disconnected from polkadot{.js}-0x6e10e163a1550e8d-content
3page.js:1 Attempt 1 failed: Could not establish connection. Receiving end does not exist.

repeated at some timeout.
I'm not sure if those issues are relevant, but I see nothing else that looks like it could be the issue. I left it running for about 20 minutes and it got nowhere.

Reproduce for Polkadot relay's recent upgrade:

npx @acala-network/chopsticks@latest -c polkadot --block 0x4c34d458d2dcd911f89eacf06abca096dacd4c94cb24ce00b694c8d6c4a0ec56

Connect to this local via smoldot and system->apply_authorized_upgrade and upload the relay WASM from the fellows v1.4.0 release then submit the extrinsic unsigned.

Note that I haven't actually reproduced it locally. You'll need to insert your magic here to connect using smoldot (is there a guide to doing this with local chains?), when I connect to my chopsticks instance via ws://127.0.0.1:8000 it works fine.

@voliva
Copy link
Contributor

voliva commented Feb 26, 2025

Thanks for the report!

The logs you're seeing connecting to nodes is smoldot trying to connect to some that might be unavailable, but it's normal. It should still work if it's connected to others.

It's really tricky to run smoldot to target a local node... It needs a chainSpec as an input, with a boot node on local, which must be a full node with a full sync (to generate proofs). I'm not sure chopsticks can be used here, maybe we can try with zombienet. I'll give it a shot.

It would be interesting to see what are the messages through the JSON-RPC, but those logs are only enabled when running the console in dev (i.e. locally, with pnpm dev). If you can run the console locally that would be great. We might add a flag somewhere to activate them on the deployed version.

@voliva
Copy link
Contributor

voliva commented Feb 26, 2025

I've managed to reproduce it, the call to validate the transaction before broadcasting it fails with a "operation inaccessible", probably because it's too large.

This might be an issue with polkadot-api, we're investigating solutions.

@seadanda
Copy link
Author

Thanks for the info, yea I wondered if the size was a factor - compressed runtimes can theoretically be up to 3MiB (currently more like 1-2 for system chains).

Image

Kusama ones are about the same

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants