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 895ae78 commit 072e2b3Copy full SHA for 072e2b3
contracts/crypto-verify/src/ethereum.rs
@@ -94,7 +94,7 @@ pub fn ethereum_address_raw(pubkey: &[u8]) -> StdResult<[u8; 20]> {
94
pub fn decode_address(input: &str) -> StdResult<[u8; 20]> {
95
if input.len() != 42 {
96
return Err(StdError::generic_err(
97
- "Ethereum adddress must be 42 characters long",
+ "Ethereum address must be 42 characters long",
98
));
99
}
100
if !input.starts_with("0x") {
0 commit comments