cosmwasm/global-accountant: fix clippy warning (#3432)

This commit is contained in:
Csongor Kiss 2023-10-10 20:59:31 +01:00 committed by GitHub
parent c19e6b972e
commit 299427087c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -720,7 +720,7 @@ fn query_batch_transfer_status(
.map(|key| {
let status = match query_transfer_status(deps, &key) {
Ok(s) => Some(s),
Err(e) if matches!(e, StdError::NotFound { .. }) => None,
Err(StdError::NotFound { .. }) => None,
Err(e) => return Err(e),
};
Ok(TransferDetails { key, status })