Skip to content

Commit

Permalink
fix: allowlist and other benches in dev
Browse files Browse the repository at this point in the history
  • Loading branch information
mustermeiszer committed Nov 10, 2023
1 parent a3e227e commit 9dea3c7
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 82 deletions.
1 change: 0 additions & 1 deletion runtime/development/src/weights/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@ pub mod pallet_identity;
pub mod pallet_interest_accrual;
pub mod pallet_investments;
pub mod pallet_keystore;
pub mod pallet_liquidity_pools;
pub mod pallet_loans;
pub mod pallet_migration_manager;
pub mod pallet_multisig;
Expand Down
81 changes: 0 additions & 81 deletions runtime/development/src/weights/pallet_liquidity_pools.rs

This file was deleted.

7 changes: 7 additions & 0 deletions runtime/development/src/weights/pallet_transfer_allowlist.rs
Original file line number Diff line number Diff line change
Expand Up @@ -204,4 +204,11 @@ impl<T: frame_system::Config> pallet_transfer_allowlist::WeightInfo for WeightIn
.saturating_add(T::DbWeight::get().reads(4))
.saturating_add(T::DbWeight::get().writes(3))
}

fn remove_transfer_allowance_missing_allowance() -> Weight {
Weight::from_parts(21_000_000, 0)
.saturating_add(Weight::from_parts(0, 3596))
.saturating_add(T::DbWeight::get().reads(2))
.saturating_add(T::DbWeight::get().writes(1))
}
}

0 comments on commit 9dea3c7

Please sign in to comment.