Skip to content

Commit 6568ae8

Browse files
committed
primitives - ValidatorId - remove old checksum function
1 parent 6b4abac commit 6568ae8

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

primitives/src/validator.rs

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -32,11 +32,6 @@ impl ValidatorId {
3232
pub fn to_hex_prefix_string(&self) -> String {
3333
format!("0x{}", self.to_hex_non_prefix_string())
3434
}
35-
36-
// To Hex `0x` prefixed string **with** **Checksum**ing the string
37-
pub fn to_hex_checksummed_string(&self) -> String {
38-
eth_checksum::checksum(&format!("0x{}", self.to_hex_non_prefix_string()))
39-
}
4035
}
4136

4237
impl ToETHChecksum for ValidatorId {}

0 commit comments

Comments
 (0)