Cesar Rodas 1 year ago
parent
commit
ec7b5767e7
3 changed files with 0 additions and 3 deletions
  1. 0 1
      utxo/src/storage/sqlite/mod.rs
  2. 0 1
      utxo/src/transaction/base_tx.rs
  3. 0 1
      utxo/src/transaction/mod.rs

+ 0 - 1
utxo/src/storage/sqlite/mod.rs

@@ -126,7 +126,6 @@ impl Storage for SQLite {
             .map_err(|x| Error::Storage(x.to_string()))
     }
 
-    #[allow(warnings)]
     async fn get_balance(&self, account: &AccountId) -> Result<Vec<Amount>, Error> {
         let mut conn = self
             .db

+ 0 - 1
utxo/src/transaction/base_tx.rs

@@ -36,7 +36,6 @@ pub struct BaseTx {
     pub created_at: DateTime<Utc>,
 }
 
-#[allow(dead_code)]
 /// Transaction object
 impl BaseTx {
     /// Creates a new instance

+ 0 - 1
utxo/src/transaction/mod.rs

@@ -89,7 +89,6 @@ impl TryFrom<(BaseTx, Revision)> for Transaction {
     }
 }
 
-#[allow(dead_code)]
 impl Transaction {
     /// Creates a new transaction
     pub async fn new(