Skip to content

Commit

Permalink
chore: fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
SkandaBhat committed Oct 2, 2024
1 parent d0502a5 commit a0b82b1
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions crates/rpc-types-mev/src/sse.rs
Original file line number Diff line number Diff line change
Expand Up @@ -189,8 +189,7 @@ impl<'de> Deserialize<'de> for FunctionSelector {
}

let bytes = hex::decode(s).map_err(serde::de::Error::custom)?;
let selector =
Self::try_from(bytes.as_slice()).map_err(serde::de::Error::custom)?;
let selector = Self::try_from(bytes.as_slice()).map_err(serde::de::Error::custom)?;
Ok(selector)
}
}
Expand Down

0 comments on commit a0b82b1

Please sign in to comment.