|
@@ -1,7 +1,7 @@
|
|
|
//! Storage layer trait
|
|
|
use crate::{
|
|
|
- amount::AmountCents, payment::PaymentTo, token::Token, transaction::Type, AccountId, Amount,
|
|
|
- Asset, BaseTx, Filter, PaymentFrom, PaymentId, RevId, Revision, Tag, Transaction, TxId,
|
|
|
+ amount::AmountCents, payment::PaymentTo, transaction::Type, AccountId, Amount, Asset, BaseTx,
|
|
|
+ Filter, PaymentFrom, PaymentId, RevId, Revision, Tag, Transaction, TxId,
|
|
|
};
|
|
|
//use chrono::{DateTime, Utc};
|
|
|
use serde::Serialize;
|
|
@@ -160,13 +160,6 @@ pub trait Batch<'a> {
|
|
|
status: ReceivedPaymentStatus,
|
|
|
) -> Result<(), Error>;
|
|
|
|
|
|
- /// Consumes the update token, if any, returning the token.
|
|
|
- ///
|
|
|
- /// Update tokens one time only. Expired update tokens should be discarded by the storage engine
|
|
|
- /// and None should be returned instead.
|
|
|
- async fn consume_update_token(&mut self, transaction_id: &TxId)
|
|
|
- -> Result<Option<Token>, Error>;
|
|
|
-
|
|
|
/// Create a new list of payments
|
|
|
async fn create_payments(
|
|
|
&mut self,
|
|
@@ -266,21 +259,6 @@ pub trait Storage {
|
|
|
/// Returns the balances for a given account
|
|
|
async fn get_balance(&self, account: &AccountId) -> Result<Vec<Amount>, Error>;
|
|
|
|
|
|
- /// Locks the transaction
|
|
|
- ///
|
|
|
- /// Upon success, the client will have an update token, which can be used once. The locked
|
|
|
- /// transactions can only be updated with their update token; without it, the storage engine
|
|
|
- /// will refuse to perform any updates. By default, the update tokens have an expiration time.
|
|
|
- ///
|
|
|
- /// This is a straightforward and user-friendly mechanism to lock transactions for further
|
|
|
- /// updates. It operates without the need for any external semaphore-like system to coordinate
|
|
|
- /// updates, making it easy to understand and manage.
|
|
|
- ///
|
|
|
- /// The database ensures correct concurrencies with its revision design. Only one update will
|
|
|
- /// succeed, and all others will be stale updates, forcing clients of failed updates to fetch
|
|
|
- /// the latest revision and re-submit their updates.
|
|
|
- async fn lock_transaction(&self, token: &Token) -> Result<(), Error>;
|
|
|
-
|
|
|
/// Returns all the negative payments that are unspent by any account
|
|
|
///
|
|
|
/// If any unspent negative deposit exists with the given account and asset, it must be spend in
|
|
@@ -422,7 +400,7 @@ pub mod test {
|
|
|
)
|
|
|
.expect("valid tx");
|
|
|
|
|
|
- let deposit = ledger.store(deposit, None).await.expect("valid insert");
|
|
|
+ let deposit = ledger.store(deposit).await.expect("valid insert");
|
|
|
|
|
|
ledger
|
|
|
.change_status(
|