|
@@ -8,17 +8,16 @@ use crate::{
|
|
|
transaction::{self, from_db, Type},
|
|
|
AccountId, Amount, Asset, AssetManager, Payment, PaymentId, Status, TransactionId,
|
|
|
};
|
|
|
+pub use batch::Batch;
|
|
|
use chrono::NaiveDateTime;
|
|
|
use futures::TryStreamExt;
|
|
|
use serde::{de::DeserializeOwned, Serialize};
|
|
|
+pub use sqlx::sqlite::{SqliteConnectOptions, SqlitePoolOptions};
|
|
|
use sqlx::{sqlite::SqliteRow, Executor, Row, SqliteConnection};
|
|
|
use std::{collections::HashMap, ops::Deref};
|
|
|
|
|
|
mod batch;
|
|
|
|
|
|
-pub use batch::Batch;
|
|
|
-pub use sqlx::sqlite::{SqliteConnectOptions, SqlitePoolOptions};
|
|
|
-
|
|
|
/// SQLite storage layer for Verax
|
|
|
pub struct SQLite {
|
|
|
db: sqlx::SqlitePool,
|
|
@@ -244,7 +243,7 @@ impl Storage for SQLite {
|
|
|
where
|
|
|
Self: 'a;
|
|
|
|
|
|
- async fn begin<'a>(&'a self) -> Result<Self::Batch<'a>, Error> {
|
|
|
+ async fn begin(&self) -> Result<Self::Batch<'_>, Error> {
|
|
|
self.db
|
|
|
.begin()
|
|
|
.await
|