Merge branch 'master' into update-artifacts-1760920582

This commit is contained in:
James Wilson
2025-10-22 10:16:53 +01:00
committed by GitHub
6 changed files with 66 additions and 32 deletions
@@ -351,6 +351,7 @@ async fn decode_transaction_extensions_from_blocks() {
"CheckWeight",
"ChargeAssetTxPayment",
"CheckMetadataHash",
"EthSetOrigin",
"WeightReclaim",
];
@@ -32,7 +32,7 @@ async fn fetch_finalized_blocks<T: Config>(
.subscribe_finalized()
.await
.expect("issue subscribing to finalized in fetch_finalized_blocks")
.skip(1) // <- skip first block incase next is close to being ready already.
.skip(1) // <- skip first block in case next is close to being ready already.
.take(n)
.map(|r| r.expect("issue fetching block in fetch_finalized_blocks"))
}