소스 검색

Fixed clippy issues

Cesar Rodas 9 달 전
부모
커밋
b79b136102
2개의 변경된 파일3개의 추가작업 그리고 3개의 파일을 삭제
  1. 1 1
      utxo/src/filter.rs
  2. 2 2
      utxo/src/id/binary.rs

+ 1 - 1
utxo/src/filter.rs

@@ -183,7 +183,7 @@ impl Filter {
             return false;
         }
 
-        if !self.revisions.is_empty() && self.revisions.binary_search(&revision_id).is_err() {
+        if !self.revisions.is_empty() && self.revisions.binary_search(revision_id).is_err() {
             return false;
         }
 

+ 2 - 2
utxo/src/id/binary.rs

@@ -38,7 +38,7 @@ macro_rules! BinaryId {
         }
 
         impl std::str::FromStr for $id {
-            type Err = crate::id::Error;
+            type Err = $crate::id::Error;
             fn from_str(value: &str) -> Result<Self, Self::Err> {
                 Ok(Self::try_from(value).unwrap_or_else(|_| {
                     use sha2::Digest;
@@ -73,7 +73,7 @@ macro_rules! BinaryId {
         }
 
         impl TryFrom<&str> for $id {
-            type Error = crate::id::Error;
+            type Error = $crate::id::Error;
             fn try_from(value: &str) -> Result<Self, Self::Error> {
                 let (hrp, bytes) = bech32::decode(&value)?;
                 let hrp = hrp.to_string();