Skip to content

Commit

Permalink
Fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
ChewingGlass committed Dec 12, 2024
1 parent 0c60132 commit 0ef5b93
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion utils/nft-proxy/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ impl ProxyConfigV0 {
if let Some(current) = self.seasons.get(middle) {
// Move to the right side if target time is greater
if current.start <= unix_time {
ans = Some(current.clone());
ans = Some(*current);
low = middle + 1;
} else {
if middle == 0 {
Expand Down

0 comments on commit 0ef5b93

Please sign in to comment.