chore(lint): fix lint storage (#11485)

This commit is contained in:
Emilia Hane
2024-10-04 19:19:02 +02:00
committed by GitHub
parent 1f190ad8ea
commit 16bc9c8b49
11 changed files with 31 additions and 31 deletions

View File

@ -115,7 +115,7 @@ impl<'a> From<&'a B256> for KeyOrNumber<'a> {
}
}
impl<'a> From<u64> for KeyOrNumber<'a> {
impl From<u64> for KeyOrNumber<'_> {
fn from(value: u64) -> Self {
KeyOrNumber::Number(value)
}