fix: handle pruned RPC state in SubQuery node

Substrate nodes prune historical state by default (~256 blocks).
When SubQuery restarts and tries to fetch runtime version for old
blocks, it crashes with "State already discarded". This patch adds
a fallback to current runtime version when historical state is
unavailable, preventing crash loops on pruned RPC endpoints.

Also removes --pull from deploy workflow to avoid unnecessary
full rebuilds on every push.
This commit is contained in:
2026-02-19 02:22:52 +03:00
parent 151389a0cc
commit d270504c9a
3 changed files with 60 additions and 1 deletions
+1 -1
View File
@@ -15,5 +15,5 @@ jobs:
script: |
cd /opt/subquery
git pull origin main
docker compose -f docker-compose.prod.yml build --pull
docker compose -f docker-compose.prod.yml build
docker compose -f docker-compose.prod.yml up -d