Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
Larkooo committed Jan 8, 2025
1 parent ada71b6 commit f1c5b4b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion crates/torii/libp2p/src/typed_data.rs
Original file line number Diff line number Diff line change
Expand Up @@ -450,7 +450,8 @@ macro_rules! from_str {
<$type>::from_str_radix(&$string[2..], 16)
} else {
<$type>::from_str($string)
}.map_err(|e| Error::InvalidMessageError(format!("Failed to parse number: {}", e)))
}
.map_err(|e| Error::InvalidMessageError(format!("Failed to parse number: {}", e)))

Check warning on line 454 in crates/torii/libp2p/src/typed_data.rs

View check run for this annotation

Codecov / codecov/patch

crates/torii/libp2p/src/typed_data.rs#L454

Added line #L454 was not covered by tests
};
}

Expand Down

0 comments on commit f1c5b4b

Please sign in to comment.