|
@@ -118,12 +118,14 @@ pub trait Batch<'a> {
|
|
|
|
|
|
#[async_trait::async_trait]
|
|
|
/// Main storage layer
|
|
|
-pub trait Storage<'a> {
|
|
|
+pub trait Storage {
|
|
|
/// The batch trait.
|
|
|
///
|
|
|
/// This batch is needed to perform the changes in the transactions and
|
|
|
/// payments in a atomic way
|
|
|
- type Batch: Batch<'a> + Send;
|
|
|
+ type Batch<'a>: Batch<'a> + Send
|
|
|
+ where
|
|
|
+ Self: 'a;
|
|
|
|
|
|
/// Begins a transaction
|
|
|
///
|
|
@@ -134,7 +136,7 @@ pub trait Storage<'a> {
|
|
|
/// the changes in the transactions and payments.
|
|
|
///
|
|
|
/// The batch has also a rollback
|
|
|
- async fn begin(&'a self) -> Result<Self::Batch, Error>;
|
|
|
+ async fn begin<'a>(&'a self) -> Result<Self::Batch<'a>, Error>;
|
|
|
|
|
|
/// Returns a payment object by ID.
|
|
|
async fn get_payment(&self, id: &PaymentId) -> Result<Payment, Error>;
|
|
@@ -229,7 +231,7 @@ pub mod test {
|
|
|
|
|
|
pub async fn transaction<'a, T>(storage: &'a T, assets: AssetManager)
|
|
|
where
|
|
|
- T: Storage<'a>,
|
|
|
+ T: Storage,
|
|
|
{
|
|
|
let deposit = Transaction::new_external_deposit(
|
|
|
"test reference".to_owned(),
|
|
@@ -255,7 +257,7 @@ pub mod test {
|
|
|
|
|
|
pub async fn transaction_not_available_until_commit<'a, T>(storage: &'a T, assets: AssetManager)
|
|
|
where
|
|
|
- T: Storage<'a>,
|
|
|
+ T: Storage,
|
|
|
{
|
|
|
let deposit = Transaction::new_external_deposit(
|
|
|
"test reference".to_owned(),
|
|
@@ -282,7 +284,7 @@ pub mod test {
|
|
|
|
|
|
pub async fn does_not_update_spent_payments<'a, T>(storage: &'a T, assets: AssetManager)
|
|
|
where
|
|
|
- T: Storage<'a>,
|
|
|
+ T: Storage,
|
|
|
{
|
|
|
let mut writer = storage.begin().await.expect("writer");
|
|
|
let mut rng = rand::thread_rng();
|
|
@@ -340,7 +342,7 @@ pub mod test {
|
|
|
|
|
|
pub async fn pending_new_payments_are_not_spendable<'a, T>(storage: &'a T, assets: AssetManager)
|
|
|
where
|
|
|
- T: Storage<'a>,
|
|
|
+ T: Storage,
|
|
|
{
|
|
|
not_spendable_new_payments_not_spendable(storage, assets, Status::Pending).await
|
|
|
}
|
|
@@ -349,7 +351,7 @@ pub mod test {
|
|
|
storage: &'a T,
|
|
|
assets: AssetManager,
|
|
|
) where
|
|
|
- T: Storage<'a>,
|
|
|
+ T: Storage,
|
|
|
{
|
|
|
not_spendable_new_payments_not_spendable(storage, assets, Status::Processing).await
|
|
|
}
|
|
@@ -358,21 +360,21 @@ pub mod test {
|
|
|
storage: &'a T,
|
|
|
assets: AssetManager,
|
|
|
) where
|
|
|
- T: Storage<'a>,
|
|
|
+ T: Storage,
|
|
|
{
|
|
|
not_spendable_new_payments_not_spendable(storage, assets, Status::Cancelled).await
|
|
|
}
|
|
|
|
|
|
pub async fn failed_new_payments_are_not_spendable<'a, T>(storage: &'a T, assets: AssetManager)
|
|
|
where
|
|
|
- T: Storage<'a>,
|
|
|
+ T: Storage,
|
|
|
{
|
|
|
not_spendable_new_payments_not_spendable(storage, assets, Status::Failed).await
|
|
|
}
|
|
|
|
|
|
pub async fn does_not_spend_unspendable_payments<'a, T>(storage: &'a T, assets: AssetManager)
|
|
|
where
|
|
|
- T: Storage<'a>,
|
|
|
+ T: Storage,
|
|
|
{
|
|
|
let mut writer = storage.begin().await.expect("writer");
|
|
|
let mut rng = rand::thread_rng();
|
|
@@ -418,7 +420,7 @@ pub mod test {
|
|
|
|
|
|
pub async fn sorted_unspent_payments<'a, T>(storage: &'a T, assets: AssetManager)
|
|
|
where
|
|
|
- T: Storage<'a>,
|
|
|
+ T: Storage,
|
|
|
{
|
|
|
let mut writer = storage.begin().await.expect("writer");
|
|
|
let accounts: Vec<AccountId> = (0..10)
|
|
@@ -480,7 +482,7 @@ pub mod test {
|
|
|
|
|
|
pub async fn relate_account_to_transaction<'a, T>(storage: &'a T, assets: AssetManager)
|
|
|
where
|
|
|
- T: Storage<'a>,
|
|
|
+ T: Storage,
|
|
|
{
|
|
|
let account1: AccountId = "alice1".parse().expect("account");
|
|
|
let account2: AccountId = "alice2".parse().expect("account");
|
|
@@ -551,7 +553,7 @@ pub mod test {
|
|
|
assets: AssetManager,
|
|
|
status: Status,
|
|
|
) where
|
|
|
- T: Storage<'a>,
|
|
|
+ T: Storage,
|
|
|
{
|
|
|
let mut writer = storage.begin().await.expect("writer");
|
|
|
let mut rng = rand::thread_rng();
|