cosmwasm/global-accountant: fix clippy warning (#3432)
This commit is contained in:
parent
c19e6b972e
commit
299427087c
|
@ -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 })
|
||||
|
|
Loading…
Reference in New Issue