|
@@ -1,7 +1,7 @@
|
|
use crate::{
|
|
use crate::{
|
|
payment::PaymentTo,
|
|
payment::PaymentTo,
|
|
storage::{self, to_bytes, AccountTransactionType, Error, ReceivedPaymentStatus},
|
|
storage::{self, to_bytes, AccountTransactionType, Error, ReceivedPaymentStatus},
|
|
- AccountId, BaseTx, PaymentId, RevId, Revision, Tag, TxId, Type,
|
|
|
|
|
|
+ AccountId, BaseTx, PaymentId, ReplayProtection, RevId, Revision, Tag, TxId, Type,
|
|
};
|
|
};
|
|
use sqlx::{Row, Sqlite, Transaction as SqlxTransaction};
|
|
use sqlx::{Row, Sqlite, Transaction as SqlxTransaction};
|
|
use std::{marker::PhantomData, num::TryFromIntError};
|
|
use std::{marker::PhantomData, num::TryFromIntError};
|
|
@@ -66,18 +66,18 @@ impl<'a> storage::Batch<'a> for Batch<'a> {
|
|
|
|
|
|
async fn store_replay_protection(
|
|
async fn store_replay_protection(
|
|
&mut self,
|
|
&mut self,
|
|
- protection: &str,
|
|
|
|
|
|
+ protection: &ReplayProtection,
|
|
transaction_id: &TxId,
|
|
transaction_id: &TxId,
|
|
) -> Result<(), Error> {
|
|
) -> Result<(), Error> {
|
|
let query =
|
|
let query =
|
|
sqlx::query(r#"INSERT INTO "transactions_replay_protection"("protection_id", "transaction_id") VALUES(?, ?) "#,
|
|
sqlx::query(r#"INSERT INTO "transactions_replay_protection"("protection_id", "transaction_id") VALUES(?, ?) "#,
|
|
- ).bind(protection).bind(transaction_id.to_string())
|
|
|
|
|
|
+ ).bind(protection.as_str()).bind(transaction_id.to_string())
|
|
.execute(&mut *self.inner)
|
|
.execute(&mut *self.inner)
|
|
.await;
|
|
.await;
|
|
|
|
|
|
if let Err(e) = query {
|
|
if let Err(e) = query {
|
|
let default_err = e.to_string();
|
|
let default_err = e.to_string();
|
|
- let query = sqlx::query(r#"SELECT "transaction_id" FROM "transactions_replay_protection" WHERE "protection_id" = ? "#).bind(protection)
|
|
|
|
|
|
+ let query = sqlx::query(r#"SELECT "transaction_id" FROM "transactions_replay_protection" WHERE "protection_id" = ? "#).bind(protection.as_str())
|
|
.fetch_optional(&mut *self.inner).await;
|
|
.fetch_optional(&mut *self.inner).await;
|
|
Err(if let Ok(Some(row)) = query {
|
|
Err(if let Ok(Some(row)) = query {
|
|
Error::AlreadyExists(row.get::<String, usize>(0).parse()?)
|
|
Error::AlreadyExists(row.get::<String, usize>(0).parse()?)
|