Skip to content
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
### Added

- Add `cumulus-pallet-weight-reclaim` to all Kusama system parachains for storage weight reclaim functionality ([#941](https://github.com/polkadot-fellows/runtimes/pull/941))
- asset-hub-kusama: use inmemorydb weights([polkadot-fellows/runtimes/pull/918](https://github.com/polkadot-fellows/runtimes/pull/918))

## [2.0.3] 21.11.2025

Expand Down
4 changes: 2 additions & 2 deletions system-parachains/asset-hubs/asset-hub-kusama/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ use system_parachains_constants::{
fee::WeightToFee,
},
};
use weights::{BlockExecutionWeight, ExtrinsicBaseWeight, RocksDbWeight};
use weights::{BlockExecutionWeight, ExtrinsicBaseWeight, InMemoryDbWeight};
use xcm::{
latest::prelude::*, Version as XcmVersion, VersionedAsset, VersionedAssetId, VersionedAssets,
VersionedLocation, VersionedXcm,
Expand Down Expand Up @@ -198,7 +198,7 @@ impl frame_system::Config for Runtime {
type RuntimeTask = RuntimeTask;
type RuntimeOrigin = RuntimeOrigin;
type BlockHashCount = BlockHashCount;
type DbWeight = RocksDbWeight;
type DbWeight = InMemoryDbWeight;
type Version = Version;
type PalletInfo = PalletInfo;
type OnNewAccount = ();
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading