Bump block numbers, update/remove unstable/stale snapshots#571
Merged
Conversation
Contributor
|
No issues found. |
The `apply_authorized_upgrade` call is sensitive to scheduled runtime upgrades; it's been removed.
xlc
approved these changes
Mar 24, 2026
There are `Corrupt` error messages in the result of XCM message processing; this requires attention.
This was referenced Mar 25, 2026
Closed
This was referenced Mar 27, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR does the following
coretimePolkadot.multisig.proxyE2E test failure.testAccounts, as thedefaultAccountsSr25519accounts it was using had their balances change sometimesRoot Cause for 1.
The
2-of-3 multisig as standard proxy with announcement and delaytest was failing exclusively on Coretime Polkadot (Kusama passed with identical code and parameters). The test loops through 4 iterations of multisig create/approve cycles (proxy delay of 7 local blocks), producing ~11newBlock()calls.At the previous known-good block number (
CORETIMEPOLKADOT_BLOCK_NUMBER=3874737), Bob's finalasMultiapproval on the 4th iteration was rejected during block building.system.dryRunon the signed extrinsic confirmed the cause:The extrinsic was structurally identical across all iterations — same call, same
maxWeight, same accounts. The block at iteration 4 simply could not fit it, while iterations 1–3 could. Kusama Coretime at its known-good block number did not exhibit this.Fix
Update known-good block numbers. The new Coretime Polkadot block does not reproduce the
ExhaustsResourcesrejection.