declone and close the door (#12035)

* declone and close the door

* cargo fmt

* remove brackets
This commit is contained in:
Squirrel
2022-08-15 20:38:36 +01:00
committed by GitHub
parent 9c2a2495fe
commit a68a80fbae
72 changed files with 344 additions and 512 deletions
@@ -587,7 +587,7 @@ mod tests {
fn import_header(&self, header: Header) {
let hash = header.hash();
let number = header.number().clone();
let number = *header.number();
self.known_blocks.lock().insert(hash, number);
self.sender
@@ -608,7 +608,7 @@ mod tests {
impl BlockStatusT<Block> for TestBlockStatus {
fn block_number(&self, hash: Hash) -> Result<Option<u64>, Error> {
Ok(self.inner.lock().get(&hash).map(|x| x.clone()))
Ok(self.inner.lock().get(&hash).map(|x| *x))
}
}