|
@@ -449,13 +449,20 @@ where
|
|
|
status: Status,
|
|
|
tags: Vec<Tag>,
|
|
|
reference: String,
|
|
|
+ replay_protection: Option<ReplayProtection>,
|
|
|
) -> Result<Transaction, Error> {
|
|
|
- self.store(Transaction::new_external_deposit(
|
|
|
+ let deposit = Transaction::new_external_deposit(
|
|
|
reference,
|
|
|
status,
|
|
|
tags,
|
|
|
vec![(account.clone(), amount)],
|
|
|
- )?)
|
|
|
+ )?;
|
|
|
+
|
|
|
+ self.store(if let Some(replay_protection) = replay_protection {
|
|
|
+ deposit.set_replay_protection(replay_protection)?
|
|
|
+ } else {
|
|
|
+ deposit
|
|
|
+ })
|
|
|
.await
|
|
|
}
|
|
|
|
|
@@ -471,6 +478,7 @@ where
|
|
|
amount: Amount,
|
|
|
status: Status,
|
|
|
reference: String,
|
|
|
+ replay_protection: Option<ReplayProtection>,
|
|
|
) -> Result<Transaction, Error> {
|
|
|
let (change_transactions, payments) = self
|
|
|
.select_payments_from_accounts(vec![(account.clone(), amount)])
|
|
@@ -478,9 +486,12 @@ where
|
|
|
for change_tx in change_transactions.into_iter() {
|
|
|
self.store(change_tx).await?;
|
|
|
}
|
|
|
- self.store(Transaction::new_external_withdrawal(
|
|
|
- reference, status, payments,
|
|
|
- )?)
|
|
|
+ let withdrawal = Transaction::new_external_withdrawal(reference, status, payments)?;
|
|
|
+ self.store(if let Some(replay_protection) = replay_protection {
|
|
|
+ withdrawal.set_replay_protection(replay_protection)?
|
|
|
+ } else {
|
|
|
+ withdrawal
|
|
|
+ })
|
|
|
.await
|
|
|
}
|
|
|
|