Skip to content

Commit 639f3d0

Browse files
committed
Merge #1801: ci: automated update to rustc 1.84.0
1ccc29e ci(clippy): fix new stricter needless_lifetime errors for rust 1.84 (Steve Myers) 49a616d ci: automated update to rustc 1.84.0 (Github Action) Pull request description: Automated update to Github CI workflow `cont_integration.yml` by [create-pull-request](https://github.com/peter-evans/create-pull-request) GitHub action ACKs for top commit: ValuedMammal: ACK 1ccc29e oleonardolima: ACK 1ccc29e Tree-SHA512: 8985c389189d6bd5012eef581d35dafe953932b3d87a10ccc327397ff4741af1b20425a2de958da90779f7000f6d349122ff39241657a67eb46a2c93799d3491
2 parents b7d64c2 + 1ccc29e commit 639f3d0

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)