We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6b4abac commit 6568ae8Copy full SHA for 6568ae8
primitives/src/validator.rs
@@ -32,11 +32,6 @@ impl ValidatorId {
32
pub fn to_hex_prefix_string(&self) -> String {
33
format!("0x{}", self.to_hex_non_prefix_string())
34
}
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
- }
40
41
42
impl ToETHChecksum for ValidatorId {}
0 commit comments