Skip to content

Commit 95a6598

Browse files
committed
use direct path to std format
1 parent a0dc959 commit 95a6598

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

crates/context/src/journal/warm_addresses.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ mod fixed_array {
2626
) -> Result<[u8; N], D::Error> {
2727
let bytes: &[u8] = Deserialize::deserialize(deserializer)?;
2828
if bytes.len() != N {
29-
return Err(serde::de::Error::custom(format!(
29+
return Err(serde::de::Error::custom(std::format!(
3030
"expected {} bytes, got {}",
3131
N,
3232
bytes.len()

0 commit comments

Comments
 (0)