|
@@ -7,8 +7,8 @@ use crate::{
|
|
|
token::TokenPayload,
|
|
|
transaction::{Error as TxError, Type},
|
|
|
worker::WorkerManager,
|
|
|
- AccountId, Amount, Error, Filter, PaymentFrom, PaymentId, RevId, Status, Tag, Transaction,
|
|
|
- TxId,
|
|
|
+ AccountId, Amount, Error, Filter, PaymentFrom, PaymentId, ReplayProtection, RevId, Status, Tag,
|
|
|
+ Transaction, TxId,
|
|
|
};
|
|
|
use std::{cmp::Ordering, collections::HashMap, sync::Arc};
|
|
|
use tokio::sync::mpsc::{self, Receiver, Sender};
|
|
@@ -406,13 +406,24 @@ where
|
|
|
status: Status,
|
|
|
from: Vec<(AccountId, Amount)>,
|
|
|
to: Vec<(AccountId, Amount)>,
|
|
|
+ replay_protection: Option<ReplayProtection>,
|
|
|
) -> Result<Transaction, Error> {
|
|
|
let (change_transaction, payments) = self.select_payments_from_accounts(from).await?;
|
|
|
+
|
|
|
+ let transaction =
|
|
|
+ Transaction::new(reference, status, Type::Transaction, payments, to).await?;
|
|
|
+
|
|
|
+ let transaction = if let Some(replay_protection) = replay_protection {
|
|
|
+ transaction.set_replay_protection(replay_protection)?
|
|
|
+ } else {
|
|
|
+ transaction
|
|
|
+ };
|
|
|
+
|
|
|
if let Some(change_tx) = change_transaction {
|
|
|
self.store(change_tx).await?;
|
|
|
}
|
|
|
- self.store(Transaction::new(reference, status, Type::Transaction, payments, to).await?)
|
|
|
- .await
|
|
|
+
|
|
|
+ self.store(transaction).await
|
|
|
}
|
|
|
|
|
|
/// Return the balances from a given account
|