Kaynağa Gözat

Fix comments

Cesar Rodas 10 ay önce
ebeveyn
işleme
a48c0b12a3
1 değiştirilmiş dosya ile 11 ekleme ve 13 silme
  1. 11 13
      utxo/src/ledger.rs

+ 11 - 13
utxo/src/ledger.rs

@@ -45,22 +45,20 @@ where
         self.brodcaster.subscribers().await
     }
 
-    /// The internal usage is to select unspent payments for each account to
-    /// create new transactions. The external API however does not expose that
-    /// level of usage, instead it exposes a simple API to move funds using
-    /// accounts to debit from and accounts to credit to. A single transaction
-    /// can use multiple accounts to debit and credit, instead of a single
+    /// The internal usage is to select unspent payments for each account to create new
+    /// transactions. The external API however does not expose that level of usage, instead it
+    /// exposes a simple API to move funds using accounts to debit from and accounts to credit to. A
+    /// single transaction can use multiple accounts to debit and credit, instead of a single
     /// account.
     ///
-    /// This function selects the unspent payments to be used in a transaction,
-    /// in a descending order (making sure to include any negative deposit).
+    /// This function selects the unspent payments to be used in a transaction, in a descending
+    /// order (making sure to include any negative deposit).
     ///
-    /// This function returns a vector of payments to be used as inputs and
-    /// optionally a dependent transaction to be executed first. This
-    /// transaction is an internal transaction and it settles immediately. It
-    /// isutxo/src/storage/cache/mod.rs used to split an existing payment into two payments, one
-    /// to be used as input and the other to be used as change. This is done to avoid locking
-    /// any change amount until the main transaction settles.
+    /// This function returns a vector of payments to be used as inputs and optionally a dependent
+    /// transaction to be executed first. This transaction is an internal transaction and it settles
+    /// immediately. It is used to split an existing payment into two payments, one to be used as
+    /// input and the  other to be used as change. This is done to avoid locking any change amount
+    /// until the main transaction settles.
     async fn select_payments_from_accounts(
         &self,
         payments: Vec<(AccountId, Amount)>,