Skip to content

Commit

Permalink
Fixed CI
Browse files Browse the repository at this point in the history
  • Loading branch information
zktony committed Mar 27, 2024
1 parent 91b6f8c commit fa14354
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pallets/thea-executor/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -502,7 +502,7 @@ pub mod pallet {
let mut pending_withdrawals = <PendingWithdrawals<T>>::get(network);
let metadata = <Metadata<T>>::get(asset_id).ok_or(Error::<T>::AssetNotRegistered)?;
if let Some(fee_asset_id) = fee_asset_id {
let metadata = <crate::pallet::Metadata<T>>::get(fee_asset_id)
let _metadata = <crate::pallet::Metadata<T>>::get(fee_asset_id)
.ok_or(Error::<T>::FeeAssetNotRegistered)?;
}
ensure!(
Expand Down

0 comments on commit fa14354

Please sign in to comment.