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
@@ -356,10 +356,7 @@ where
}
}
async fn submit(
&self,
tx: &dyn Transaction<HashType = HashOf<C>>,
) -> Result<HashOf<C>, Error> {
async fn submit(&self, tx: &dyn Transaction<HashType = HashOf<C>>) -> Result<HashOf<C>, Error> {
let tx = tx.as_any().downcast_ref::<SubxtTransaction<C>>().unwrap();
tx.transaction.submit().await.map_err(|e| e.into())
}
@@ -382,9 +379,7 @@ where
}
fn transaction_monitor(&self) -> Option<&dyn TransactionMonitor<HashOf<C>>> {
self.block_monitor
.as_ref()
.map(|m| m as &dyn TransactionMonitor<HashOf<C>>)
self.block_monitor.as_ref().map(|m| m as &dyn TransactionMonitor<HashOf<C>>)
}
}