mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 12:17:58 +00:00
Encryption support for the statement store (#14440)
* Added ECIES encryption * tweaks * fmt * Make clippy happy * Use local keystore * qed
This commit is contained in:
@@ -196,9 +196,7 @@ pub trait Backend<Block: BlockT>:
|
||||
base_hash: Block::Hash,
|
||||
import_lock: &RwLock<()>,
|
||||
) -> Result<Option<Block::Hash>> {
|
||||
let Some(base_header) = self.header(base_hash)? else {
|
||||
return Ok(None)
|
||||
};
|
||||
let Some(base_header) = self.header(base_hash)? else { return Ok(None) };
|
||||
|
||||
let leaves = {
|
||||
// ensure no blocks are imported during this code block.
|
||||
|
||||
Reference in New Issue
Block a user