|
@@ -37,7 +37,7 @@ use std::{collections::HashMap, ops::Deref};
|
|
|
/// either as settled, cancelled or failed. A higher layer should split any
|
|
|
/// available payment to be spend into a new transaction, and then finalize the
|
|
|
/// transaction, and reserve only the exact amount to be spent, otherwise
|
|
|
-/// unrelated funds will be held unspentable until the transaction is finalized.
|
|
|
+/// unrelated funds will be held unspendable until the transaction is finalized.
|
|
|
#[derive(Debug, Clone, Serialize)]
|
|
|
pub struct Transaction {
|
|
|
id: TransactionId,
|
|
@@ -252,7 +252,7 @@ impl Transaction {
|
|
|
)];
|
|
|
|
|
|
Ok(Self {
|
|
|
- id: id,
|
|
|
+ id,
|
|
|
reference,
|
|
|
spends: spend,
|
|
|
typ,
|
|
@@ -283,8 +283,8 @@ impl Transaction {
|
|
|
hasher.update(&bincode::serialize(account)?);
|
|
|
hasher.update(&bincode::serialize(amount)?);
|
|
|
}
|
|
|
- hasher.update(&created_at.timestamp_millis().to_le_bytes());
|
|
|
- hasher.update(&reference);
|
|
|
+ hasher.update(created_at.timestamp_millis().to_le_bytes());
|
|
|
+ hasher.update(reference);
|
|
|
Ok(TransactionId::new(hasher.finalize().into()))
|
|
|
}
|
|
|
|
|
@@ -500,7 +500,7 @@ impl Transaction {
|
|
|
for payment in self.creates.iter() {
|
|
|
batch.store_new_payment(payment).await?;
|
|
|
batch
|
|
|
- .relate_account_to_transaction(&self, &payment.to)
|
|
|
+ .relate_account_to_transaction(self, &payment.to)
|
|
|
.await?;
|
|
|
batch.store_changelogs(&payment.changelog).await?;
|
|
|
}
|
|
@@ -508,13 +508,11 @@ impl Transaction {
|
|
|
batch
|
|
|
.update_payment(&input.id, &self.id, self.status.clone())
|
|
|
.await?;
|
|
|
- batch
|
|
|
- .relate_account_to_transaction(&self, &input.to)
|
|
|
- .await?;
|
|
|
+ batch.relate_account_to_transaction(self, &input.to).await?;
|
|
|
batch.store_changelogs(&input.changelog).await?;
|
|
|
}
|
|
|
|
|
|
- batch.tag_transaction(&self, &self.tags).await?;
|
|
|
+ batch.tag_transaction(self, &self.tags).await?;
|
|
|
batch.store_changelogs(&self.changelog).await?;
|
|
|
batch.commit().await?;
|
|
|
Ok(())
|