chore: regenerate umbrella crate, fix feature propagation

This commit is contained in:
2025-12-16 11:28:32 +03:00
parent dd6d48f528
commit 620b0e3aa0
1358 changed files with 9464 additions and 7656 deletions
+7 -4
View File
@@ -34,9 +34,9 @@ use pezpallet_revive::{
},
EthTransactError,
};
use runtime_api::RuntimeApi;
use pezsp_runtime::traits::Block as BlockT;
use pezsp_weights::Weight;
use runtime_api::RuntimeApi;
use std::{ops::Range, sync::Arc, time::Duration};
use storage_api::StorageApi;
use subxt::{
@@ -514,7 +514,10 @@ impl Client {
}
/// Get receipts count per block.
pub async fn receipts_count_per_block(&self, block_hash: &BizinikiwiBlockHash) -> Option<usize> {
pub async fn receipts_count_per_block(
&self,
block_hash: &BizinikiwiBlockHash,
) -> Option<usize> {
self.receipt_provider.receipts_count_per_block(block_hash).await
}
@@ -710,8 +713,8 @@ impl Client {
// This could potentially fail under below circumstances:
// - state has been pruned
// - the block author cannot be obtained from the digest logs (highly unlikely)
// - the node we are targeting has an outdated revive pezpallet (or ETH block functionality is
// disabled)
// - the node we are targeting has an outdated revive pezpallet (or ETH block functionality
// is disabled)
match self.runtime_api(block.hash()).eth_block().await {
Ok(mut eth_block) => {
log::trace!(target: LOG_TARGET, "Ethereum block from runtime API hash {:?}", eth_block.hash);