Skip to content

Commit

Permalink
Merge #1801: ci: automated update to rustc 1.84.0
Browse files Browse the repository at this point in the history
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
  • Loading branch information
notmandatory committed Jan 21, 2025
2 parents b7d64c2 + 1ccc29e commit 639f3d0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
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

0 comments on commit 639f3d0

Please sign in to comment.