Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion crates/wallet/src/wallet/persisted.rs
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ impl<P: AsyncWalletPersister> PersistedWallet<P> {
/// Returns whether any new changes were persisted.
///
/// If the `persister` errors, the staged changes will not be cleared.
pub async fn persist_async<'a>(&'a mut self, persister: &mut P) -> Result<bool, P::Error> {
pub async fn persist_async(&mut self, persister: &mut P) -> Result<bool, P::Error> {
match self.inner.staged_mut() {
Some(stage) => {
P::persist(persister, &*stage).await?;
Expand Down
2 changes: 1 addition & 1 deletion rust-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.83.0
1.84.0
Loading