pub trait IDatabaseTransaction:
MaybeSend
+ IDatabaseTransactionOps
+ Debug {
// Required methods
fn commit_tx<'life0, 'async_trait>(
&'life0 mut self,
) -> Pin<Box<dyn Future<Output = Result<()>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait;
fn is_global(&self) -> bool;
}
Expand description
Fedimint database transaction
See IDatabase
for more info.