paritytech / polkadot-sdk

The Parity Polkadot Blockchain SDK
https://polkadot.network/
1.62k stars 564 forks source link

Error: Service(Client(Execution(Other("Exported method GrandpaApi_grandpa_authorities is not found")))) #4838

Open letsbangout opened 1 week ago

letsbangout commented 1 week ago

Is there an existing issue?

Experiencing problems? Have you tried our Stack Exchange first?

Description of bug

Polkadot substrate-node fails to launch with asset-hub-[polkadot(-genesis)] or [westend]. Throws the following output:

root@assethub-phx4:~# ./polkadot-sdk/target/release/substrate-node --chain=./polkadot-sdk/cumulus/parachains/chain-specs/asset-hub-polkadot.json
2024-06-19 19:04:32 Substrate Node
2024-06-19 19:04:32 ✌️  version 3.0.0-dev-55a13abcd2f
2024-06-19 19:04:32 ❀️  by Parity Technologies <admin@parity.io>, 2017-2024
2024-06-19 19:04:32 πŸ“‹ Chain specification: Polkadot Asset Hub
2024-06-19 19:04:32 🏷  Node name: necessary-ray-1865
2024-06-19 19:04:32 πŸ‘€ Role: FULL
2024-06-19 19:04:32 πŸ’Ύ Database: RocksDb at /root/.local/share/substrate-node/chains/asset-hub-polkadot/db/full
2024-06-19 19:04:35 πŸ‘΄ Loading GRANDPA authority set from genesis on what appears to be first startup.
Error: Service(Client(Execution(Other("Exported method GrandpaApi_grandpa_authorities is not found"))))
root@assethub-phx4:~# ./polkadot-sdk/target/release/substrate-node --chain=./polkadot-sdk/cumulus/parachains/chain-specs/asset-hub-polkadot.json --no-grandpa
2024-06-19 19:04:46 Substrate Node
2024-06-19 19:04:46 ✌️  version 3.0.0-dev-55a13abcd2f
2024-06-19 19:04:46 ❀️  by Parity Technologies <admin@parity.io>, 2017-2024
2024-06-19 19:04:46 πŸ“‹ Chain specification: Polkadot Asset Hub
2024-06-19 19:04:46 🏷  Node name: scandalous-chalk-9680
2024-06-19 19:04:46 πŸ‘€ Role: FULL
2024-06-19 19:04:46 πŸ’Ύ Database: RocksDb at /root/.local/share/substrate-node/chains/asset-hub-polkadot/db/full
2024-06-19 19:04:48 πŸ‘΄ Loading GRANDPA authority set from genesis on what appears to be first startup.
Error: Service(Client(Execution(Other("Exported method GrandpaApi_grandpa_authorities is not found"))))
root@assethub-phx4:~#

Steps to reproduce

  1. Follow the guide at https://github.com/paritytech/polkadot-sdk/tree/master/cumulus#asset-hub- (this made very little sense to me, it's still not apparent if I cloned the right repo)
  2. Start with a freshly installed Ubuntu 20.04 LTS:

apt -y update apt -y install build-essential apt install --assume-yes git clang curl libssl-dev llvm libudev-dev make protobuf-compiler curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh git clone https://github.com/paritytech/polkadot-sdk cd polkadot-sdk cargo build --release --locked --bin substrate-node

  1. Launch as per above
letsbangout commented 1 week ago

It's worthy of note, I have an existing node running on the 'polkadot' binary provided by the project's apt repo, also on Ubuntu 20.04 LTS. When I copy the .json file above to that node and launch with the polkadot binary, the error output identical to above.

bkchr commented 1 week ago

If you want to start a parachain, use polkadot-parachain. If you want to launch a relay chain, use polkadot as binary. That will make it work.

letsbangout commented 1 week ago

I wouldn't say I'm trying to "start" a parachain. I'm trying to run a node on asset-hub-polkadot. It doesn't work with the 'polkadot' binary as aforementioned. And I believe i've already tried with 'polkadot-parachain' with exactly the same result. Perhaps you could point to a guide showing how to get this going, because I don't think one exists and there is a gaping hole in the documentation in this regard.

bkchr commented 1 week ago

https://github.com/paritytech/polkadot-sdk/tree/master/cumulus#asset-hub-

@kianenigma we need to make the more prominent.

letsbangout commented 1 week ago

https://github.com/paritytech/polkadot-sdk/tree/master/cumulus#asset-hub-

@kianenigma we need to make the more prominent.

Thanks for the reply. Now it seems we're getting somewhere :)

Note that I quoted this exact URL in my bug report. I hope you'll forgive my ignorance, mostly not knowing how things are done in the "polkadot world". But I am directed by your URL that I should build a binary called polkadot-parachain. It mentions "This repository also contains the Asset Hub runtimes." I presume that repo is in fact the same one where this documentation lies, either https://github.com/paritytech/polkadot-sdk or https://github.com/paritytech/polkadot-sdk/cumulus

I've tried building polkadot-parachain using the command supplied by the document, but it seems that is not a valid target:

root@assethub-phx4:~# git clone https://github.com/paritytech/polkadot-sdk
Cloning into 'polkadot-sdk'...
remote: Enumerating objects: 2605358, done.
remote: Counting objects: 100% (25315/25315), done.
remote: Compressing objects: 100% (6028/6028), done.
remote: Total 2605358 (delta 17853), reused 23721 (delta 16527), pack-reused 2580043
Receiving objects: 100% (2605358/2605358), 4.76 GiB | 28.61 MiB/s, done.
Resolving deltas: 100% (2215453/2215453), done.
Updating files: 100% (5900/5900), done.
root@assethub-phx4:~#
root@assethub-phx4:~# cd polkadot-sdk/
root@assethub-phx4:~/polkadot-sdk# cargo build --release --locked --bin polkadot-parachain
warning: /root/polkadot-sdk/cumulus/client/relay-chain-rpc-interface/Cargo.toml: `default_features` is deprecated in favor of `default-features` and will not work in the 2024 edition
(in the `smoldot` dependency)
warning: /root/polkadot-sdk/cumulus/client/relay-chain-rpc-interface/Cargo.toml: `default_features` is deprecated in favor of `default-features` and will not work in the 2024 edition
(in the `smoldot-light` dependency)
    Updating crates.io index
  Downloaded curve25519-dalek v4.1.3
  Downloaded 1 crate (306.0 KB) in 0.52s
error: no bin target named `polkadot-parachain`.
Available bin targets:
    polkadot
    polkadot-execute-worker
    polkadot-prepare-worker
    substrate-node

root@assethub-phx4:~/polkadot-sdk# cd cumulus/
root@assethub-phx4:~/polkadot-sdk/cumulus# cargo build --release --locked --bin polkadot-parachain
warning: /root/polkadot-sdk/cumulus/client/relay-chain-rpc-interface/Cargo.toml: `default_features` is deprecated in favor of `default-features` and will not work in the 2024 edition
(in the `smoldot` dependency)
warning: /root/polkadot-sdk/cumulus/client/relay-chain-rpc-interface/Cargo.toml: `default_features` is deprecated in favor of `default-features` and will not work in the 2024 edition
(in the `smoldot-light` dependency)
error: no bin target named `polkadot-parachain`.
Available bin targets:
    polkadot
    polkadot-execute-worker
    polkadot-prepare-worker
    substrate-node

root@assethub-phx4:~/polkadot-sdk/cumulus#

As per above I have already tried the substrate-node target which doesn't work. Hence why I've treated this, heretofore, as a bug.

Finally, for the sake of completeness, I did build the polkadot target in the manner directed by the URL. That throws substantially the same error as in the initial bug report:

root@assethub-phx4:~/polkadot-sdk# ./target/release/polkadot --chain ./cumulus/parachains/chain-specs/asset-hub-polkadot.json
2024-06-21 03:13:19 Parity Polkadot
2024-06-21 03:13:19 ✌️  version 1.13.0-74decbbdf22
2024-06-21 03:13:19 ❀️  by Parity Technologies <admin@parity.io>, 2017-2024
2024-06-21 03:13:19 πŸ“‹ Chain specification: Polkadot Asset Hub
2024-06-21 03:13:19 🏷  Node name: unequal-love-9657
2024-06-21 03:13:19 πŸ‘€ Role: FULL
2024-06-21 03:13:19 πŸ’Ύ Database: RocksDb at /root/.local/share/polkadot/chains/asset-hub-polkadot/db/full
2024-06-21 03:13:23 πŸ”¨ Initializing Genesis block/state (state: 0xc1ef…2c80, header-hash: 0x68d5…de2f)
2024-06-21 03:13:23 πŸ‘΄ Loading GRANDPA authority set from genesis on what appears to be first startup.
2024-06-21 03:13:23 Essential task `txpool-background` failed. Shutting down service.
Error:
   0: Execution failed: Other: Exported method GrandpaApi_grandpa_authorities is not found

Backtrace omitted. Run with RUST_BACKTRACE=1 environment variable to display it.
Run with RUST_BACKTRACE=full to include source snippets.
root@assethub-phx4:~/polkadot-sdk#

Is there anything else I should try, or shall we reopen and call this one a bug? Thanks again. :)

bkchr commented 1 week ago

cargo run -p polkadot-parachain-bin --release -- --chain asset-hub-polkadot this will start the node and let it sync the chain.

letsbangout commented 1 week ago

Fascinating. After running the above command, cargo decided to build me a binary called polkadot-parachain. After the first invocation via cargo, I can now invoke it directly per below. Hopefully this report has been beneficial for you guys, it certainly has for me. Please let me know if there is any further testing you'd like me to do in my environment. Thanks again.

root@assethub-phx4:~/polkadot-sdk# ./target/release/polkadot-parachain --chain asset-hub-polkadot
2024-06-22 06:39:59 Polkadot parachain
2024-06-22 06:40:00 ✌️  version 4.0.0-74decbbdf22
2024-06-22 06:40:00 ❀️  by Parity Technologies <admin@parity.io>, 2017-2024
2024-06-22 06:40:00 πŸ“‹ Chain specification: Polkadot Asset Hub
2024-06-22 06:40:00 🏷  Node name: nutritious-burn-7149
2024-06-22 06:40:00 πŸ‘€ Role: FULL
2024-06-22 06:40:00 πŸ’Ύ Database: RocksDb at /root/.local/share/polkadot-parachain/chains/asset-hub-polkadot/db/full
2024-06-22 06:40:02 Parachain id: Id(1000)
2024-06-22 06:40:02 Parachain Account: 5Ec4AhPZk8STuex8Wsi9TwDtJQxKqzPJRCH7348Xtcs9vZLJ
2024-06-22 06:40:02 Is collating: no
2024-06-22 06:44:15 [Relaychain] 🏷  Local node identity is: 12D3KooWAYXELyWFkCj1VS51v384ZcJS74q5vVRKf4RCxFd3cKWa
2024-06-22 06:44:15 [Relaychain] Running libp2p network backend
2024-06-22 06:44:15 [Relaychain] πŸ’» Operating system: linux
2024-06-22 06:44:15 [Relaychain] πŸ’» CPU architecture: x86_64
2024-06-22 06:44:15 [Relaychain] πŸ’» Target environment: gnu
2024-06-22 06:44:15 [Relaychain] πŸ’» CPU: Intel(R) Xeon(R) CPU E5-2695 v4 @ 2.10GHz
2024-06-22 06:44:15 [Relaychain] πŸ’» CPU cores: 1
2024-06-22 06:44:15 [Relaychain] πŸ’» Memory: 14637MB
2024-06-22 06:44:15 [Relaychain] πŸ’» Kernel: 5.4.0-182-generic
2024-06-22 06:44:15 [Relaychain] πŸ’» Linux distribution: Ubuntu 20.04.6 LTS
2024-06-22 06:44:15 [Relaychain] πŸ’» Virtual machine: yes
2024-06-22 06:44:15 [Relaychain] πŸ“¦ Highest known block at #7673996
2024-06-22 06:44:15 [Relaychain] 〽️ Prometheus exporter started at 127.0.0.1:9616
2024-06-22 06:44:15 [Relaychain] Running JSON-RPC server: addr=127.0.0.1:9945, allowed origins=["http://localhost:*", "http://127.0.0.1:*", "https://localhost:*", "https://127.0.0.1:*", "https://polkadot.js.org"]
2024-06-22 06:44:15 [Relaychain] 🏁 CPU score: 634.64 MiBs
2024-06-22 06:44:15 [Relaychain] 🏁 Memory score: 8.64 GiBs
2024-06-22 06:44:15 [Relaychain] 🏁 Disk score (seq. writes): 975.63 MiBs
2024-06-22 06:44:15 [Relaychain] 🏁 Disk score (rand. writes): 225.69 MiBs
2024-06-22 06:44:15 [Parachain] Using default protocol ID "sup" because none is configured in the chain specs
2024-06-22 06:44:15 [Parachain] 🏷  Local node identity is: 12D3KooWKqs9B9LAPiVBxHYzCDdXrhTi17ZFP6795oVC3Q6Ymqs6
2024-06-22 06:44:15 [Parachain] Running libp2p network backend
2024-06-22 06:44:15 [Parachain] πŸ’» Operating system: linux
2024-06-22 06:44:15 [Parachain] πŸ’» CPU architecture: x86_64
2024-06-22 06:44:15 [Parachain] πŸ’» Target environment: gnu
2024-06-22 06:44:15 [Parachain] πŸ’» CPU: Intel(R) Xeon(R) CPU E5-2695 v4 @ 2.10GHz
2024-06-22 06:44:15 [Parachain] πŸ’» CPU cores: 1
2024-06-22 06:44:15 [Parachain] πŸ’» Memory: 14637MB
2024-06-22 06:44:15 [Parachain] πŸ’» Kernel: 5.4.0-182-generic
2024-06-22 06:44:15 [Parachain] πŸ’» Linux distribution: Ubuntu 20.04.6 LTS
2024-06-22 06:44:15 [Parachain] πŸ’» Virtual machine: yes
2024-06-22 06:44:15 [Parachain] πŸ“¦ Highest known block at #6527496
2024-06-22 06:44:15 [Parachain] 〽️ Prometheus exporter started at 127.0.0.1:9615
2024-06-22 06:44:16 [Parachain] Running JSON-RPC server: addr=127.0.0.1:9944, allowed origins=["http://localhost:*", "http://127.0.0.1:*", "https://localhost:*", "https://127.0.0.1:*", "https://polkadot.js.org"]
2024-06-22 06:44:16 [Parachain] 🏁 CPU score: 634.64 MiBs
2024-06-22 06:44:16 [Parachain] 🏁 Memory score: 8.64 GiBs
2024-06-22 06:44:16 [Parachain] 🏁 Disk score (seq. writes): 975.63 MiBs
2024-06-22 06:44:16 [Parachain] 🏁 Disk score (rand. writes): 225.69 MiBs
2024-06-22 06:44:16 [Relaychain] πŸ” Discovered new external address for our node: /ip4/184.164.75.37/tcp/30334/ws/p2p/12D3KooWAYXELyWFkCj1VS51v384ZcJS74q5vVRKf4RCxFd3cKWa
2024-06-22 06:44:16 [Parachain] πŸ” Discovered new external address for our node: /ip4/184.164.75.37/tcp/30333/ws/p2p/12D3KooWKqs9B9LAPiVBxHYzCDdXrhTi17ZFP6795oVC3Q6Ymqs6
2024-06-22 06:44:17 [Relaychain] πŸ’” The bootnode you want to connect to at `/dns/polkadot-bootnode.turboflakes.io/tcp/30300/p2p/12D3KooWHJBMZgt7ymAdTRtadPcGXpJw79vBGe8z53r9JMkZW7Ha` provided a different peer ID `12D3KooWHbq8r4UWhXjuuW3cfwmc6ebFaTH6sQ6X43CUJKMMrMQg` than the one you expect `12D3KooWHJBMZgt7ymAdTRtadPcGXpJw79vBGe8z53r9JMkZW7Ha`.
2024-06-22 06:44:20 [Relaychain] βš™οΈ  Syncing, target=#21324619 (5 peers), best: #7674037 (0xed3d…5e70), finalized #7673856 (0x0140…98f1), ⬇ 1.3MiB/s ⬆ 103.9kiB/s
2024-06-22 06:44:21 [Parachain] βš™οΈ  Syncing, target=#6527791 (8 peers), best: #6527496 (0x43f2…13da), finalized #1719 (0x35c6…23e1), ⬇ 873.6kiB/s ⬆ 5.9kiB/s
2024-06-22 06:44:23 [Parachain] ♻️  Reorg on #6527496,0x43f2…13da to #6527497,0x8d71…babc, common ancestor #6527495,0x13e1…72bd
2024-06-22 06:44:23 [Parachain] πŸ† Imported #6527497 (0x16db…8e04 β†’ 0x8d71…babc)
2024-06-22 06:44:24 [Relaychain] πŸ† Imported #7674125 (0x5203…d37e β†’ 0x16e0…fec8)
bkchr commented 1 week ago

Okay perfect!

letsbangout commented 6 days ago

Whereas this issue is still marked "open", and Whereas the basis of this issue seems to be that polkadot-sdk is inadequately documented as to how to obtain a polkadot-parachain binary as we have seen:

I'd like to point out that there is another glaring error in the docs: I see no indication as to what kind of system resources polkadot-sdk needs to run a binary. In the URL we have both referenced above, https://github.com/paritytech/polkadot-sdk/tree/master/cumulus#asset-hub- there is no mention of i.e. how much RAM is appropriate to dedicate to this task. Neither does the Polkadot node guide (i.e. to run a Polkadot full node or archive node) at https://wiki.polkadot.network/docs/maintain-sync - no mention of system resources, in particular, RAM.

I have Kusama and Polkadot nodes running (on the Ubuntu 20.04 repo binary) for a few days now, both seem to only actually need about 1.6GB of RAM:

root@kusama-phx4:~# free
              total        used        free      shared  buff/cache   available
Mem:       14989076     1558112      146404        1432    13284560    13256632
Swap:             0           0           0
root@kusama-phx4:~# systemctl status kusama
● kusama.service - Kusama daemon
     Loaded: loaded (/etc/systemd/system/kusama.service; enabled; vendor preset>
     Active: active (running) since Wed 2024-06-19 17:37:17 UTC; 4 days ago
   Main PID: 83984 (kusama.sh)
      Tasks: 138 (limit: 17457)
     Memory: 13.6G

and

root@polkadot-phx4:~# free
              total        used        free      shared  buff/cache   available
Mem:       14989076     1683416      122564        1432    13183096    13131796
Swap:             0           0           0
root@polkadot-phx4:~# systemctl status polka
● polka.service - Polkadot daemon
     Loaded: loaded (/etc/systemd/system/polka.service; enabled; vendor preset:>
     Active: active (running) since Wed 2024-06-19 22:44:06 UTC; 4 days ago
   Main PID: 1414 (polka.sh)
      Tasks: 134 (limit: 17457)
     Memory: 13.7G

I am currently seeing an out-of-memory condition on polkadot-parachain. Before I treat this as a potentially separate issue, could you guys advise on how much RAM the parachain daemon should need to run? And perhaps also mark this issue for a documentation correction on multiple fronts, if you agree with my assessment?

Thanks.

letsbangout commented 6 days ago

Edit: I have the polkadot-parachain VM provisioned exactly as the others (polkadot/kusama): Ubuntu 20.04 LTS, 15GB RAM, 8 vCPU's on a dual Xeon 2695v4 machine, and NVMe disk space sufficient to run each chain as necessary.

The invocation is as follows:

root@assethub-phx4:~# cat launch.sh
#!/bin/bash
./polkadot-sdk/target/release/polkadot-parachain --chain asset-hub-polkadot
bkchr commented 6 days ago

I am currently seeing an out-of-memory condition on polkadot-parachain. Before I treat this as a potentially separate issue, could you guys advise on how much RAM the parachain daemon should need to run?

Which version are you using?

letsbangout commented 6 days ago

I am currently seeing an out-of-memory condition on polkadot-parachain. Before I treat this as a potentially separate issue, could you guys advise on how much RAM the parachain daemon should need to run?

Which version are you using?

This is the entire output, including version number. Note that it is quite slow to initialize the database, perhaps 5 minutes, which is much slower than my full archives of Polkadot and Kusama btw. Specifically I mean that the stage that says Database: RocksDb at /root/.local/share/polkadot-parachain/chains/asset-hub-polkadot/db/full hangs there for 5 or so minutes.

root@assethub-phx4:~# ./launch.sh
2024-06-24 06:12:33 Polkadot parachain
2024-06-24 06:12:33 ✌️  version 4.0.0-74decbbdf22
2024-06-24 06:12:33 ❀️  by Parity Technologies <admin@parity.io>, 2017-2024
2024-06-24 06:12:33 πŸ“‹ Chain specification: Polkadot Asset Hub
2024-06-24 06:12:33 🏷  Node name: ordinary-ball-2313
2024-06-24 06:12:33 πŸ‘€ Role: FULL
2024-06-24 06:12:33 πŸ’Ύ Database: RocksDb at /root/.local/share/polkadot-parachain/chains/asset-hub-polkadot/db/full
2024-06-24 06:12:36 Parachain id: Id(1000)
2024-06-24 06:12:36 Parachain Account: 5Ec4AhPZk8STuex8Wsi9TwDtJQxKqzPJRCH7348Xtcs9vZLJ
2024-06-24 06:12:36 Is collating: no
2024-06-24 06:19:10 [Relaychain] 🏷  Local node identity is: 12D3KooWAYXELyWFkCj1VS51v384ZcJS74q5vVRKf4RCxFd3cKWa
2024-06-24 06:19:10 [Relaychain] Running libp2p network backend
2024-06-24 06:19:10 [Relaychain] πŸ’» Operating system: linux
2024-06-24 06:19:10 [Relaychain] πŸ’» CPU architecture: x86_64
2024-06-24 06:19:10 [Relaychain] πŸ’» Target environment: gnu
2024-06-24 06:19:10 [Relaychain] πŸ’» CPU: Intel(R) Xeon(R) CPU E5-2695 v4 @ 2.10GHz
2024-06-24 06:19:10 [Relaychain] πŸ’» CPU cores: 1
2024-06-24 06:19:10 [Relaychain] πŸ’» Memory: 14637MB
2024-06-24 06:19:10 [Relaychain] πŸ’» Kernel: 5.4.0-182-generic
2024-06-24 06:19:10 [Relaychain] πŸ’» Linux distribution: Ubuntu 20.04.6 LTS
2024-06-24 06:19:10 [Relaychain] πŸ’» Virtual machine: yes
2024-06-24 06:19:10 [Relaychain] πŸ“¦ Highest known block at #7956480
2024-06-24 06:19:10 [Relaychain] 〽️ Prometheus exporter started at 127.0.0.1:9616
2024-06-24 06:19:10 [Relaychain] Running JSON-RPC server: addr=127.0.0.1:9945, allowed origins=["http://localhost:*", "http://127.0.0.1:*", "https://localhost:*", "https://127.0.0.1:*", "https://polkadot.js.org"]
2024-06-24 06:19:10 [Relaychain] 🏁 CPU score: 642.85 MiBs
2024-06-24 06:19:10 [Relaychain] 🏁 Memory score: 7.93 GiBs
2024-06-24 06:19:10 [Relaychain] 🏁 Disk score (seq. writes): 964.45 MiBs
2024-06-24 06:19:10 [Relaychain] 🏁 Disk score (rand. writes): 249.91 MiBs
2024-06-24 06:19:10 [Parachain] Using default protocol ID "sup" because none is configured in the chain specs
2024-06-24 06:19:10 [Parachain] 🏷  Local node identity is: 12D3KooWKqs9B9LAPiVBxHYzCDdXrhTi17ZFP6795oVC3Q6Ymqs6
2024-06-24 06:19:10 [Parachain] Running libp2p network backend
2024-06-24 06:19:10 [Parachain] πŸ’» Operating system: linux
2024-06-24 06:19:10 [Parachain] πŸ’» CPU architecture: x86_64
2024-06-24 06:19:10 [Parachain] πŸ’» Target environment: gnu
2024-06-24 06:19:10 [Parachain] πŸ’» CPU: Intel(R) Xeon(R) CPU E5-2695 v4 @ 2.10GHz
2024-06-24 06:19:10 [Parachain] πŸ’» CPU cores: 1
2024-06-24 06:19:10 [Parachain] πŸ’» Memory: 14637MB
2024-06-24 06:19:10 [Parachain] πŸ’» Kernel: 5.4.0-182-generic
2024-06-24 06:19:10 [Parachain] πŸ’» Linux distribution: Ubuntu 20.04.6 LTS
2024-06-24 06:19:10 [Parachain] πŸ’» Virtual machine: yes
2024-06-24 06:19:10 [Parachain] πŸ“¦ Highest known block at #6535804
2024-06-24 06:19:10 [Parachain] 〽️ Prometheus exporter started at 127.0.0.1:9615
2024-06-24 06:19:10 [Parachain] Running JSON-RPC server: addr=127.0.0.1:9944, allowed origins=["http://localhost:*", "http://127.0.0.1:*", "https://localhost:*", "https://127.0.0.1:*", "https://polkadot.js.org"]
2024-06-24 06:19:10 [Parachain] 🏁 CPU score: 642.85 MiBs
2024-06-24 06:19:10 [Parachain] 🏁 Memory score: 7.93 GiBs
2024-06-24 06:19:10 [Parachain] 🏁 Disk score (seq. writes): 964.45 MiBs
2024-06-24 06:19:10 [Parachain] 🏁 Disk score (rand. writes): 249.91 MiBs
2024-06-24 06:19:10 [Relaychain] πŸ” Discovered new external address for our node: /ip4/184.164.75.37/tcp/30334/ws/p2p/12D3KooWAYXELyWFkCj1VS51v384ZcJS74q5vVRKf4RCxFd3cKWa
2024-06-24 06:19:10 [Parachain] πŸ” Discovered new external address for our node: /ip4/184.164.75.37/tcp/30333/ws/p2p/12D3KooWKqs9B9LAPiVBxHYzCDdXrhTi17ZFP6795oVC3Q6Ymqs6
2024-06-24 06:19:11 [Relaychain] πŸ’” The bootnode you want to connect to at `/dns/polkadot-bootnode.turboflakes.io/tcp/30300/p2p/12D3KooWHJBMZgt7ymAdTRtadPcGXpJw79vBGe8z53r9JMkZW7Ha` provided a different peer ID `12D3KooWHbq8r4UWhXjuuW3cfwmc6ebFaTH6sQ6X43CUJKMMrMQg` than the one you expect `12D3KooWHJBMZgt7ymAdTRtadPcGXpJw79vBGe8z53r9JMkZW7Ha`.
2024-06-24 06:19:15 [Relaychain] βš™οΈ  Syncing, target=#21352984 (5 peers), best: #7956621 (0xafa4…ca59), finalized #7955968 (0xae47…95da), ⬇ 6.8MiB/s ⬆ 59.5kiB/s
2024-06-24 06:19:15 [Parachain] βš™οΈ  Syncing, target=#6541792 (8 peers), best: #6535804 (0xb443…392e), finalized #60230 (0x826c…01fe), ⬇ 4.6MiB/s ⬆ 11.5kiB/s
2024-06-24 06:19:20 [Relaychain] βš™οΈ  Syncing 31.8 bps, target=#21352985 (5 peers), best: #7956780 (0x620b…f0fe), finalized #7955968 (0xae47…95da), ⬇ 622.4kiB/s ⬆ 94.7kiB/s
2024-06-24 06:19:20 [Parachain] βš™οΈ  Syncing 38.4 bps, target=#6541792 (8 peers), best: #6535996 (0x478d…7c02), finalized #60230 (0x826c…01fe), ⬇ 4.9MiB/s ⬆ 0.6kiB/s
2024-06-24 06:19:25 [Relaychain] βš™οΈ  Syncing 37.0 bps, target=#21352985 (7 peers), best: #7956965 (0x91e2…e1b1), finalized #7955968 (0xae47…95da), ⬇ 763.3kiB/s ⬆ 54.0kiB/s
2024-06-24 06:19:25 [Parachain] βš™οΈ  Syncing  0.0 bps, target=#6541793 (8 peers), best: #6535996 (0x478d…7c02), finalized #60230 (0x826c…01fe), ⬇ 444.2kiB/s ⬆ 0.5kiB/s
2024-06-24 06:19:30 [Relaychain] βš™οΈ  Syncing  5.4 bps, target=#21352986 (9 peers), best: #7956992 (0x6870…22aa), finalized #7955968 (0xae47…95da), ⬇ 278.3kiB/s ⬆ 144.9kiB/s
2024-06-24 06:19:30 [Parachain] βš™οΈ  Syncing  0.0 bps, target=#6541793 (8 peers), best: #6535996 (0x478d…7c02), finalized #60230 (0x826c…01fe), ⬇ 40.4kiB/s ⬆ 6.6kiB/s
2024-06-24 06:19:35 [Relaychain] βš™οΈ  Syncing  0.0 bps, target=#21352987 (9 peers), best: #7956992 (0x6870…22aa), finalized #7955968 (0xae47…95da), ⬇ 305.5kiB/s ⬆ 43.9kiB/s
2024-06-24 06:19:35 [Parachain] βš™οΈ  Syncing 39.0 bps, target=#6541793 (7 peers), best: #6536191 (0xc34e…14d0), finalized #60230 (0x826c…01fe), ⬇ 299.6kiB/s ⬆ 4.0kiB/s
2024-06-24 06:19:40 [Relaychain] βš™οΈ  Syncing  0.0 bps, target=#21352988 (11 peers), best: #7956992 (0x6870…22aa), finalized #7955968 (0xae47…95da), ⬇ 183.0kiB/s ⬆ 91.9kiB/s
2024-06-24 06:19:40 [Parachain] βš™οΈ  Syncing 171.8 bps, target=#6541794 (7 peers), best: #6537050 (0xbd39…3cfa), finalized #60230 (0x826c…01fe), ⬇ 2.7kiB/s ⬆ 0.9kiB/s
2024-06-24 06:19:45 [Relaychain] βš™οΈ  Syncing  0.0 bps, target=#21352989 (12 peers), best: #7956992 (0x6870…22aa), finalized #7955968 (0xae47…95da), ⬇ 78.7kiB/s ⬆ 29.5kiB/s
2024-06-24 06:19:45 [Parachain] βš™οΈ  Syncing 184.0 bps, target=#6541794 (7 peers), best: #6537970 (0x27c3…8dd5), finalized #60230 (0x826c…01fe), ⬇ 1.2kiB/s ⬆ 1.3kiB/s
2024-06-24 06:19:50 [Relaychain] βš™οΈ  Syncing  0.0 bps, target=#21352990 (11 peers), best: #7956992 (0x6870…22aa), finalized #7955968 (0xae47…95da), ⬇ 58.1kiB/s ⬆ 21.5kiB/s
2024-06-24 06:19:50 [Parachain] βš™οΈ  Syncing 78.8 bps, target=#6541795 (7 peers), best: #6538364 (0x1eb1…6d83), finalized #60230 (0x826c…01fe), ⬇ 6.7MiB/s ⬆ 9.5kiB/s
2024-06-24 06:19:55 [Relaychain] βš™οΈ  Syncing  0.0 bps, target=#21352991 (11 peers), best: #7956992 (0x6870…22aa), finalized #7955968 (0xae47…95da), ⬇ 147.6kiB/s ⬆ 62.5kiB/s
2024-06-24 06:19:55 [Parachain] βš™οΈ  Syncing 125.8 bps, target=#6541795 (7 peers), best: #6538993 (0x8ee7…2575), finalized #60230 (0x826c…01fe), ⬇ 3.6MiB/s ⬆ 2.3kiB/s
[527309.194579] Out of memory: Killed process 397075 (polkadot-parach) total-vm:1243853456kB, anon-rss:14503208kB, file-rss:0kB, shmem-rss:0kB, UID:0 pgtables:37464kB oom_score_adj:0
./launch.sh: line 2: 397075 Killed                  ./polkadot-sdk/target/release/polkadot-parachain --chain asset-hub-polkadot
root@assethub-phx4:~#
bkchr commented 6 days ago

Please run with -ldb=trace,state-db=trace. I have some assumption on what is going on.

letsbangout commented 1 day ago

See below for the last 100 lines of the console log. If you need the whole thing I suppose I can pastebin it.

root@assethub-phx4:~# tail -n 100 ah-trace.log
2024-06-30 06:51:19.560 TRACE tokio-runtime-worker state-db::pin: [Parachain] Unpinned block: 0x95b4b43d00427f745548e97cad07462024064af475834c5012edb1e8ffa9adc8
2024-06-30 06:51:19.560 TRACE tokio-runtime-worker state-db::pin: [Parachain] Pinned block: 0x95b4b43d00427f745548e97cad07462024064af475834c5012edb1e8ffa9adc8
2024-06-30 06:51:19.560 TRACE tokio-runtime-worker state-db::pin: [Parachain] Pinned non-canon block: 0x95b4b43d00427f745548e97cad07462024064af475834c5012edb1e8ffa9adc8
2024-06-30 06:51:19.560 TRACE tokio-runtime-worker state-db::pin: [Parachain] Releasing reference for 0x95b4b43d00427f745548e97cad07462024064af475834c5012edb1e8ffa9adc8
2024-06-30 06:51:19.560 TRACE tokio-runtime-worker state-db::pin: [Parachain] Unpinned block: 0x95b4b43d00427f745548e97cad07462024064af475834c5012edb1e8ffa9adc8
2024-06-30 06:51:19.560 TRACE tokio-runtime-worker state-db::pin: [Parachain] Pinned block: 0x95b4b43d00427f745548e97cad07462024064af475834c5012edb1e8ffa9adc8
2024-06-30 06:51:19.560 TRACE tokio-runtime-worker state-db::pin: [Parachain] Pinned non-canon block: 0x95b4b43d00427f745548e97cad07462024064af475834c5012edb1e8ffa9adc8
2024-06-30 06:51:19.560 TRACE tokio-runtime-worker state-db: [Parachain] Inserted uncanonicalized changeset 6544057.0 0xa4c3efa6cd90604c56330bd9d5805b7dd9cb10293a0bd0e4e533e56e05496eaf (51 inserted, 50 deleted)
2024-06-30 06:51:19.560 DEBUG tokio-runtime-worker db: [Parachain] DB Commit 0xa4c3efa6cd90604c56330bd9d5805b7dd9cb10293a0bd0e4e533e56e05496eaf (6544057), best=true, state=true, existing=false, finalized=false
2024-06-30 06:51:19.560 TRACE tokio-runtime-worker state-db::pin: [Parachain] Unpinned block: 0x95b4b43d00427f745548e97cad07462024064af475834c5012edb1e8ffa9adc8
2024-06-30 06:51:19.560 TRACE tokio-runtime-worker db: [Parachain] Canonicalize block #6539960 (0xb4d6da9a3a9b20b7e6095c814efa8656079416c01e02a95baaf0bc865ad13ed9)
2024-06-30 06:51:19.560 TRACE tokio-runtime-worker state-db: [Parachain] Canonicalizing 0xb4d6da9a3a9b20b7e6095c814efa8656079416c01e02a95baaf0bc865ad13ed9
2024-06-30 06:51:19.560 TRACE tokio-runtime-worker state-db::pin: [Parachain] Pinned non-canon block: 0xb4d6da9a3a9b20b7e6095c814efa8656079416c01e02a95baaf0bc865ad13ed9
2024-06-30 06:51:19.560 TRACE tokio-runtime-worker state-db: [Parachain] Discarding 1 records
2024-06-30 06:51:19.560 TRACE tokio-runtime-worker state-db: [Parachain] Adding to pruning window: 0xb4d6da9a3a9b20b7e6095c814efa8656079416c01e02a95baaf0bc865ad13ed9 (34 inserted, 34 deleted)
2024-06-30 06:51:19.560 TRACE tokio-runtime-worker state-db: [Parachain] Importing 6539960, base=6539704
2024-06-30 06:51:19.560 TRACE tokio-runtime-worker state-db: [Parachain] Pruning 0x1a8913f6711cefd4821221e3184f7ced2b0323f3400044c4c1f6336eae8cd774 (34 deleted)
2024-06-30 06:51:19.561 TRACE tokio-runtime-worker db: [Parachain] DB Commit done 0xa4c3efa6cd90604c56330bd9d5805b7dd9cb10293a0bd0e4e533e56e05496eaf
2024-06-30 06:51:19.561 TRACE tokio-runtime-worker state-db::pin: [Parachain] Discarding unpinned non-canon block: 0xb4d6da9a3a9b20b7e6095c814efa8656079416c01e02a95baaf0bc865ad13ed9
2024-06-30 06:51:19.561 TRACE tokio-runtime-worker state-db::pin: [Parachain] Pinned block: 0xa4c3efa6cd90604c56330bd9d5805b7dd9cb10293a0bd0e4e533e56e05496eaf
2024-06-30 06:51:19.561 TRACE tokio-runtime-worker state-db::pin: [Parachain] Pinned non-canon block: 0xa4c3efa6cd90604c56330bd9d5805b7dd9cb10293a0bd0e4e533e56e05496eaf
2024-06-30 06:51:19.561 TRACE tokio-runtime-worker state-db::pin: [Parachain] Unpinned block: 0xa4c3efa6cd90604c56330bd9d5805b7dd9cb10293a0bd0e4e533e56e05496eaf
2024-06-30 06:51:19.561 TRACE tokio-runtime-worker state-db::pin: [Parachain] Pinned block: 0xa4c3efa6cd90604c56330bd9d5805b7dd9cb10293a0bd0e4e533e56e05496eaf
2024-06-30 06:51:19.561 TRACE tokio-runtime-worker state-db::pin: [Parachain] Pinned non-canon block: 0xa4c3efa6cd90604c56330bd9d5805b7dd9cb10293a0bd0e4e533e56e05496eaf
2024-06-30 06:51:19.561 TRACE tokio-runtime-worker state-db::pin: [Parachain] Unpinned block: 0xa4c3efa6cd90604c56330bd9d5805b7dd9cb10293a0bd0e4e533e56e05496eaf
2024-06-30 06:51:19.561 TRACE tokio-runtime-worker state-db::pin: [Parachain] Pinned block: 0xa4c3efa6cd90604c56330bd9d5805b7dd9cb10293a0bd0e4e533e56e05496eaf
2024-06-30 06:51:19.561 TRACE tokio-runtime-worker state-db::pin: [Parachain] Pinned non-canon block: 0xa4c3efa6cd90604c56330bd9d5805b7dd9cb10293a0bd0e4e533e56e05496eaf
2024-06-30 06:51:19.561 TRACE tokio-runtime-worker state-db::pin: [Parachain] Unpinned block: 0xa4c3efa6cd90604c56330bd9d5805b7dd9cb10293a0bd0e4e533e56e05496eaf
2024-06-30 06:51:19.561 TRACE tokio-runtime-worker state-db::pin: [Parachain] Pinned block: 0xa4c3efa6cd90604c56330bd9d5805b7dd9cb10293a0bd0e4e533e56e05496eaf
2024-06-30 06:51:19.561 TRACE tokio-runtime-worker state-db::pin: [Parachain] Pinned non-canon block: 0xa4c3efa6cd90604c56330bd9d5805b7dd9cb10293a0bd0e4e533e56e05496eaf
2024-06-30 06:51:19.561 TRACE tokio-runtime-worker state-db::pin: [Parachain] Unpinned block: 0xa4c3efa6cd90604c56330bd9d5805b7dd9cb10293a0bd0e4e533e56e05496eaf
2024-06-30 06:51:19.561 TRACE tokio-runtime-worker state-db::pin: [Parachain] Pinned block: 0xa4c3efa6cd90604c56330bd9d5805b7dd9cb10293a0bd0e4e533e56e05496eaf
2024-06-30 06:51:19.562 TRACE tokio-runtime-worker state-db::pin: [Parachain] Pinned non-canon block: 0xa4c3efa6cd90604c56330bd9d5805b7dd9cb10293a0bd0e4e533e56e05496eaf
2024-06-30 06:51:19.562 TRACE tokio-runtime-worker state-db::pin: [Parachain] Unpinned block: 0xa4c3efa6cd90604c56330bd9d5805b7dd9cb10293a0bd0e4e533e56e05496eaf
2024-06-30 06:51:19.562 TRACE tokio-runtime-worker state-db::pin: [Parachain] Pinned block: 0xa4c3efa6cd90604c56330bd9d5805b7dd9cb10293a0bd0e4e533e56e05496eaf
2024-06-30 06:51:19.562 TRACE tokio-runtime-worker state-db::pin: [Parachain] Pinned non-canon block: 0xa4c3efa6cd90604c56330bd9d5805b7dd9cb10293a0bd0e4e533e56e05496eaf
2024-06-30 06:51:19.562 TRACE tokio-runtime-worker state-db::pin: [Parachain] Unpinned block: 0xa4c3efa6cd90604c56330bd9d5805b7dd9cb10293a0bd0e4e533e56e05496eaf
2024-06-30 06:51:19.562 TRACE tokio-runtime-worker state-db::pin: [Parachain] Pinned block: 0xa4c3efa6cd90604c56330bd9d5805b7dd9cb10293a0bd0e4e533e56e05496eaf
2024-06-30 06:51:19.562 TRACE tokio-runtime-worker state-db::pin: [Parachain] Pinned non-canon block: 0xa4c3efa6cd90604c56330bd9d5805b7dd9cb10293a0bd0e4e533e56e05496eaf
2024-06-30 06:51:19.562 TRACE tokio-runtime-worker state-db::pin: [Parachain] Unpinned block: 0xa4c3efa6cd90604c56330bd9d5805b7dd9cb10293a0bd0e4e533e56e05496eaf
2024-06-30 06:51:19.562 TRACE tokio-runtime-worker state-db::pin: [Parachain] Pinned block: 0xa4c3efa6cd90604c56330bd9d5805b7dd9cb10293a0bd0e4e533e56e05496eaf
2024-06-30 06:51:19.562 TRACE tokio-runtime-worker state-db::pin: [Parachain] Pinned non-canon block: 0xa4c3efa6cd90604c56330bd9d5805b7dd9cb10293a0bd0e4e533e56e05496eaf
2024-06-30 06:51:19.562 TRACE tokio-runtime-worker state-db::pin: [Parachain] Unpinned block: 0xa4c3efa6cd90604c56330bd9d5805b7dd9cb10293a0bd0e4e533e56e05496eaf
2024-06-30 06:51:19.562 TRACE tokio-runtime-worker state-db::pin: [Parachain] Pinned block: 0xa4c3efa6cd90604c56330bd9d5805b7dd9cb10293a0bd0e4e533e56e05496eaf
2024-06-30 06:51:19.562 TRACE tokio-runtime-worker state-db::pin: [Parachain] Pinned non-canon block: 0xa4c3efa6cd90604c56330bd9d5805b7dd9cb10293a0bd0e4e533e56e05496eaf
2024-06-30 06:51:19.563 TRACE tokio-runtime-worker state-db::pin: [Parachain] Unpinned block: 0xa4c3efa6cd90604c56330bd9d5805b7dd9cb10293a0bd0e4e533e56e05496eaf
2024-06-30 06:51:19.563 TRACE tokio-runtime-worker state-db::pin: [Parachain] Pinned block: 0xa4c3efa6cd90604c56330bd9d5805b7dd9cb10293a0bd0e4e533e56e05496eaf
2024-06-30 06:51:19.563 TRACE tokio-runtime-worker state-db::pin: [Parachain] Pinned non-canon block: 0xa4c3efa6cd90604c56330bd9d5805b7dd9cb10293a0bd0e4e533e56e05496eaf
2024-06-30 06:51:19.571 TRACE tokio-runtime-worker state-db::pin: [Parachain] Unpinned block: 0xa4c3efa6cd90604c56330bd9d5805b7dd9cb10293a0bd0e4e533e56e05496eaf
2024-06-30 06:51:19.572 TRACE tokio-runtime-worker state-db::pin: [Parachain] Pinned block: 0xa4c3efa6cd90604c56330bd9d5805b7dd9cb10293a0bd0e4e533e56e05496eaf
2024-06-30 06:51:19.572 TRACE tokio-runtime-worker state-db::pin: [Parachain] Pinned non-canon block: 0xa4c3efa6cd90604c56330bd9d5805b7dd9cb10293a0bd0e4e533e56e05496eaf
2024-06-30 06:51:19.572 TRACE tokio-runtime-worker state-db::pin: [Parachain] Releasing reference for 0xa4c3efa6cd90604c56330bd9d5805b7dd9cb10293a0bd0e4e533e56e05496eaf
2024-06-30 06:51:19.572 TRACE tokio-runtime-worker state-db::pin: [Parachain] Unpinned block: 0xa4c3efa6cd90604c56330bd9d5805b7dd9cb10293a0bd0e4e533e56e05496eaf
2024-06-30 06:51:19.572 TRACE tokio-runtime-worker state-db::pin: [Parachain] Pinned block: 0xa4c3efa6cd90604c56330bd9d5805b7dd9cb10293a0bd0e4e533e56e05496eaf
2024-06-30 06:51:19.572 TRACE tokio-runtime-worker state-db::pin: [Parachain] Pinned non-canon block: 0xa4c3efa6cd90604c56330bd9d5805b7dd9cb10293a0bd0e4e533e56e05496eaf
2024-06-30 06:51:19.572 TRACE tokio-runtime-worker state-db: [Parachain] Inserted uncanonicalized changeset 6544058.0 0x437211a0607308c191e427d6c213969facd00ba50d3e5a847966bb4d20e0569a (49 inserted, 48 deleted)
2024-06-30 06:51:19.572 DEBUG tokio-runtime-worker db: [Parachain] DB Commit 0x437211a0607308c191e427d6c213969facd00ba50d3e5a847966bb4d20e0569a (6544058), best=true, state=true, existing=false, finalized=false
2024-06-30 06:51:19.572 TRACE tokio-runtime-worker state-db::pin: [Parachain] Unpinned block: 0xa4c3efa6cd90604c56330bd9d5805b7dd9cb10293a0bd0e4e533e56e05496eaf
2024-06-30 06:51:19.572 TRACE tokio-runtime-worker db: [Parachain] Canonicalize block #6539961 (0x80656d6f8b74d573794c252901615165ea7bc1e132abf26b3358130681fb7e7e)
2024-06-30 06:51:19.572 TRACE tokio-runtime-worker state-db: [Parachain] Canonicalizing 0x80656d6f8b74d573794c252901615165ea7bc1e132abf26b3358130681fb7e7e
2024-06-30 06:51:19.572 TRACE tokio-runtime-worker state-db::pin: [Parachain] Pinned non-canon block: 0x80656d6f8b74d573794c252901615165ea7bc1e132abf26b3358130681fb7e7e
2024-06-30 06:51:19.572 TRACE tokio-runtime-worker state-db: [Parachain] Discarding 1 records
2024-06-30 06:51:19.572 TRACE tokio-runtime-worker state-db: [Parachain] Adding to pruning window: 0x80656d6f8b74d573794c252901615165ea7bc1e132abf26b3358130681fb7e7e (34 inserted, 34 deleted)
2024-06-30 06:51:19.572 TRACE tokio-runtime-worker state-db: [Parachain] Importing 6539961, base=6539705
2024-06-30 06:51:19.572 TRACE tokio-runtime-worker state-db: [Parachain] Pruning 0x0df3be128eb3bd5ffe9500650ce0b66457b886013576765915e5998510099e63 (42 deleted)
2024-06-30 06:51:19.573 TRACE tokio-runtime-worker db: [Parachain] DB Commit done 0x437211a0607308c191e427d6c213969facd00ba50d3e5a847966bb4d20e0569a
2024-06-30 06:51:19.573 TRACE tokio-runtime-worker state-db::pin: [Parachain] Discarding unpinned non-canon block: 0x80656d6f8b74d573794c252901615165ea7bc1e132abf26b3358130681fb7e7e
2024-06-30 06:51:19.573 TRACE tokio-runtime-worker state-db::pin: [Parachain] Pinned block: 0x437211a0607308c191e427d6c213969facd00ba50d3e5a847966bb4d20e0569a
2024-06-30 06:51:19.573 TRACE tokio-runtime-worker state-db::pin: [Parachain] Pinned non-canon block: 0x437211a0607308c191e427d6c213969facd00ba50d3e5a847966bb4d20e0569a
2024-06-30 06:51:19.573 TRACE tokio-runtime-worker state-db::pin: [Parachain] Unpinned block: 0x437211a0607308c191e427d6c213969facd00ba50d3e5a847966bb4d20e0569a
2024-06-30 06:51:19.573 TRACE tokio-runtime-worker state-db::pin: [Parachain] Pinned block: 0x437211a0607308c191e427d6c213969facd00ba50d3e5a847966bb4d20e0569a
2024-06-30 06:51:19.573 TRACE tokio-runtime-worker state-db::pin: [Parachain] Pinned non-canon block: 0x437211a0607308c191e427d6c213969facd00ba50d3e5a847966bb4d20e0569a
2024-06-30 06:51:19.573 TRACE tokio-runtime-worker state-db::pin: [Parachain] Unpinned block: 0x437211a0607308c191e427d6c213969facd00ba50d3e5a847966bb4d20e0569a
2024-06-30 06:51:19.573 TRACE tokio-runtime-worker state-db::pin: [Parachain] Pinned block: 0x437211a0607308c191e427d6c213969facd00ba50d3e5a847966bb4d20e0569a
2024-06-30 06:51:19.573 TRACE tokio-runtime-worker state-db::pin: [Parachain] Pinned non-canon block: 0x437211a0607308c191e427d6c213969facd00ba50d3e5a847966bb4d20e0569a
2024-06-30 06:51:19.573 TRACE tokio-runtime-worker state-db::pin: [Parachain] Unpinned block: 0x437211a0607308c191e427d6c213969facd00ba50d3e5a847966bb4d20e0569a
2024-06-30 06:51:19.573 TRACE tokio-runtime-worker state-db::pin: [Parachain] Pinned block: 0x437211a0607308c191e427d6c213969facd00ba50d3e5a847966bb4d20e0569a
2024-06-30 06:51:19.573 TRACE tokio-runtime-worker state-db::pin: [Parachain] Pinned non-canon block: 0x437211a0607308c191e427d6c213969facd00ba50d3e5a847966bb4d20e0569a
2024-06-30 06:51:19.573 TRACE tokio-runtime-worker state-db::pin: [Parachain] Unpinned block: 0x437211a0607308c191e427d6c213969facd00ba50d3e5a847966bb4d20e0569a
2024-06-30 06:51:19.573 TRACE tokio-runtime-worker state-db::pin: [Parachain] Pinned block: 0x437211a0607308c191e427d6c213969facd00ba50d3e5a847966bb4d20e0569a
2024-06-30 06:51:19.573 TRACE tokio-runtime-worker state-db::pin: [Parachain] Pinned non-canon block: 0x437211a0607308c191e427d6c213969facd00ba50d3e5a847966bb4d20e0569a
2024-06-30 06:51:19.573 TRACE tokio-runtime-worker state-db::pin: [Parachain] Unpinned block: 0x437211a0607308c191e427d6c213969facd00ba50d3e5a847966bb4d20e0569a
2024-06-30 06:51:19.573 TRACE tokio-runtime-worker state-db::pin: [Parachain] Pinned block: 0x437211a0607308c191e427d6c213969facd00ba50d3e5a847966bb4d20e0569a
2024-06-30 06:51:19.573 TRACE tokio-runtime-worker state-db::pin: [Parachain] Pinned non-canon block: 0x437211a0607308c191e427d6c213969facd00ba50d3e5a847966bb4d20e0569a
2024-06-30 06:51:19.573 TRACE tokio-runtime-worker state-db::pin: [Parachain] Unpinned block: 0x437211a0607308c191e427d6c213969facd00ba50d3e5a847966bb4d20e0569a
2024-06-30 06:51:19.573 TRACE tokio-runtime-worker state-db::pin: [Parachain] Pinned block: 0x437211a0607308c191e427d6c213969facd00ba50d3e5a847966bb4d20e0569a
2024-06-30 06:51:19.573 TRACE tokio-runtime-worker state-db::pin: [Parachain] Pinned non-canon block: 0x437211a0607308c191e427d6c213969facd00ba50d3e5a847966bb4d20e0569a
2024-06-30 06:51:19.573 TRACE tokio-runtime-worker state-db::pin: [Parachain] Unpinned block: 0x437211a0607308c191e427d6c213969facd00ba50d3e5a847966bb4d20e0569a
2024-06-30 06:51:19.573 TRACE tokio-runtime-worker state-db::pin: [Parachain] Pinned block: 0x437211a0607308c191e427d6c213969facd00ba50d3e5a847966bb4d20e0569a
2024-06-30 06:51:19.573 TRACE tokio-runtime-worker state-db::pin: [Parachain] Pinned non-canon block: 0x437211a0607308c191e427d6c213969facd00ba50d3e5a847966bb4d20e0569a
2024-06-30 06:51:19.574 TRACE tokio-runtime-worker state-db::pin: [Parachain] Unpinned block: 0x437211a0607308c191e427d6c213969facd00ba50d3e5a847966bb4d20e0569a
2024-06-30 06:51:19.574 TRACE tokio-runtime-worker state-db::pin: [Parachain] Pinned block: 0x437211a0607308c191e427d6c213969facd00ba50d3e5a847966bb4d20e0569a
2024-06-30 06:51:19.574 TRACE tokio-runtime-worker state-db::pin: [Parachain] Pinned non-canon block: 0x437211a0607308c191e427d6c213969facd00ba50d3e5a847966bb4d20e0569a
2024-06-30 06:51:19.574 TRACE tokio-runtime-worker state-db::pin: [Parachain] Unpinned block: 0x437211a0607308c191e427d6c213969facd00ba50d3e5a847966bb4d20e0569a
2024-06-30 06:51:19.574 TRACE tokio-runtime-worker state-db::pin: [Parachain] Pinned block: 0x437211a0607308c191e427d6c213969facd00ba50d3e5a847966bb4d20e0569a    ./launch.sh: line 2: 417512 Killed                  ./polkadot-sdk/target/release/polkadot-parachain --chain asset-hub-polkadot -ldb=trace,state-db=trace
root@assethub-phx4:~#