Skip to content

Commit

Permalink
rust lint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
keyliaran authored and grao1991 committed Apr 24, 2024
1 parent 3f12844 commit 3ef816b
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions rust/processor/src/models/coin_models/coin_utils.rs
Original file line number Diff line number Diff line change
Expand Up @@ -163,9 +163,7 @@ pub struct CoinInfoType {
creator_address: String,
}

static RE: Lazy<Regex> = Lazy::new(|| {
Regex::new(r"(<(.*)>)").unwrap()
});
static RE: Lazy<Regex> = Lazy::new(|| Regex::new(r"(<(.*)>)").unwrap());

static COIN_RESOURCES: Lazy<[String; 2]> = Lazy::new(|| {
[
Expand Down

0 comments on commit 3ef816b

Please sign in to comment.