Skip to content
This repository has been archived by the owner on Oct 19, 2024. It is now read-only.

Commit

Permalink
chore: clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
gakonst committed Jul 15, 2023
1 parent 5dcd3b7 commit 030bf43
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ethers-providers/src/ext/ens.rs
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ pub fn namehash(name: &str) -> H256 {
}

// Remove the variation selector U+FE0F
let name = name.replace("\u{fe0f}", "");
let name = name.replace('\u{fe0f}', "");

// Generate the node starting from the right
name.rsplit('.')
Expand Down

0 comments on commit 030bf43

Please sign in to comment.