Skip to content

Commit 5b4bf19

Browse files
committed
ci: fix clippy nits + bump rust-version to 1.84
1 parent a67117b commit 5b4bf19

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

crates/wallet/src/wallet/persisted.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -241,7 +241,7 @@ impl<P: AsyncWalletPersister> PersistedWallet<P> {
241241
/// Returns whether any new changes were persisted.
242242
///
243243
/// If the `persister` errors, the staged changes will not be cleared.
244-
pub async fn persist_async<'a>(&'a mut self, persister: &mut P) -> Result<bool, P::Error> {
244+
pub async fn persist_async(&mut self, persister: &mut P) -> Result<bool, P::Error> {
245245
match self.inner.staged_mut() {
246246
Some(stage) => {
247247
P::persist(persister, &*stage).await?;

rust-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.83.0
1+
1.84.0

0 commit comments

Comments
 (0)