tests: update integration tests for the latest substrate-node runtime - #2274
Merged
Conversation
lexnv
approved these changes
Aug 17, 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.
The CI node binary cache was rebuilt on Aug 14 against latest polkadot-sdk master, which broke two integration tests for every PR (both failures also reproduce on master's daily compatibility run):
decode_transaction_extensions_from_blocks: the kitchensink runtime gained a newAsScarcitytransaction extension (pallet-scarcity: coinage-style NFT ownership with feeless rest-time-prioritized transfers polkadot-sdk#12730), so 13 extensions are now advertised vs the 12 hardcoded in the test.storage_iter:System.Accountnow has 17 genesis entries rather than 19.Notably, the first failure is a live example of what #2265 / #2273 addresses: a runtime adding a transaction extension breaks a client with hardcoded knowledge of the extension set.
Also includes a
cargo fmtfix for two test asserts intransaction_extensions.rswhich landed unformatted on master and fail the fmt check for every PR.