Skip to content

Commit

Permalink
fix: missed renaming
Browse files Browse the repository at this point in the history
fix: weights

fix: allowlist weights
  • Loading branch information
wischli committed Dec 4, 2023
1 parent bf0885e commit 52ee34a
Show file tree
Hide file tree
Showing 5 changed files with 344 additions and 153 deletions.
2 changes: 1 addition & 1 deletion pallets/transfer-allowlist/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -379,7 +379,7 @@ pub mod pallet {
/// - either the current block + delay if a delay is set
/// - or the current block if no delay is set
#[pallet::call_index(1)]
#[pallet::weight(T::WeightInfo::remove_transfer_allowance_missing_allowance().max(T::WeightInfo::remove_transfer_allowance_delay_present()))]
#[pallet::weight(T::WeightInfo::remove_transfer_allowance_delay_present().max(T::WeightInfo::remove_transfer_allowance_no_delay()))]
pub fn remove_transfer_allowance(
origin: OriginFor<T>,
currency_id: T::CurrencyId,
Expand Down
Loading

0 comments on commit 52ee34a

Please sign in to comment.