Skip to content

Commit 072e2b3

Browse files
Update contracts/crypto-verify/src/ethereum.rs
Co-authored-by: Mauro Lacy <[email protected]>
1 parent 895ae78 commit 072e2b3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

contracts/crypto-verify/src/ethereum.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ pub fn ethereum_address_raw(pubkey: &[u8]) -> StdResult<[u8; 20]> {
9494
pub fn decode_address(input: &str) -> StdResult<[u8; 20]> {
9595
if input.len() != 42 {
9696
return Err(StdError::generic_err(
97-
"Ethereum adddress must be 42 characters long",
97+
"Ethereum address must be 42 characters long",
9898
));
9999
}
100100
if !input.starts_with("0x") {

0 commit comments

Comments
 (0)