Browse Source

minor change

Cesar Rodas 1 year ago
parent
commit
6c30ae5aac

+ 1 - 0
src/main.rs

@@ -226,6 +226,7 @@ async fn main() -> std::io::Result<()> {
     let settings = "sqlite:./test.db"
         .parse::<verax::storage::sqlite::SqliteConnectOptions>()
         .expect("valid settings")
+        .journal_mode(verax::storage::sqlite::SqliteJournalMode::Wal)
         .create_if_missing(true);
 
     let pool = verax::storage::sqlite::SqlitePoolOptions::new()

+ 2 - 0
utxo/src/payment.rs

@@ -15,6 +15,7 @@ pub struct PaymentTo {
     /// Which account can spend this new payment
     pub to: AccountId,
     /// The amount of the payment
+    #[serde(flatten)]
     pub amount: Amount,
 }
 
@@ -35,5 +36,6 @@ pub struct PaymentFrom {
     /// Which account is paying
     pub from: AccountId,
     /// The amount of the payment
+    #[serde(flatten)]
     pub amount: Amount,
 }

+ 2 - 0
utxo/src/storage/cache/batch.rs

@@ -161,6 +161,8 @@ where
         revision_id: &RevId,
         revision: &Revision,
     ) -> Result<(), Error> {
+        self.to_invalidate
+            .insert(Ids::Transaction(revision.transaction_id.clone()), ());
         self.inner.store_revision(revision_id, revision).await
     }
 

+ 2 - 1
utxo/src/storage/sqlite/mod.rs

@@ -13,7 +13,7 @@ use std::collections::HashMap;
 mod batch;
 
 pub use batch::Batch;
-pub use sqlx::sqlite::{SqliteConnectOptions, SqlitePoolOptions};
+pub use sqlx::sqlite::{SqliteConnectOptions, SqliteJournalMode, SqlitePoolOptions};
 
 use super::ReceivedPaymentStatus;
 
@@ -382,6 +382,7 @@ mod test {
         let settings = path
             .parse::<SqliteConnectOptions>()
             .expect("valid settings")
+            .journal_mode(sqlx::sqlite::SqliteJournalMode::Wal)
             .create_if_missing(true);
 
         let pool = SqlitePoolOptions::new()

+ 1 - 2
utxo/src/tests/deposit.rs

@@ -200,8 +200,7 @@ async fn balance_decreases_while_pending_spending_and_cancel() {
 }
 
 #[tokio::test]
-async fn balance_decreases_while_pending_spending_and_faileialance_decreases_while_pending_spending_and_failed(
-) {
+async fn balance_decreases_while_pending_spending_and_failed() {
     let source = "account1".parse::<AccountId>().expect("account");
     let dest = "account2".parse::<AccountId>().expect("account");
     let fee = "fee".parse::<AccountId>().expect("account");