diff --git a/CHANGELOG.md b/CHANGELOG.md index 56b948b3d2..caa54b5bfd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -20,6 +20,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). - [[#1114](https://github.com/polkadot-fellows/runtimes/pull/1114)] Kusama & Polkadot relay: Waive XCM fees for Treasury pallet origin. - [[#1114](https://github.com/polkadot-fellows/runtimes/pull/1114)] Collectives Polkadot: Waive XCM fees for Fellowship/Ambassador Treasury and Salary pallet origins. - [[#1114](https://github.com/polkadot-fellows/runtimes/pull/1114)] Asset Hub Kusama & Polkadot: Activate `TransferAllAssets` on `pallet_bounties` to sweep fungibles from closed bounty accounts. +- [[#1114](https://github.com/polkadot-fellows/runtimes/pull/1114)] Asset Hub Kusama & Polkadot: Set `BountyDepositBase` on `pallet_bounties` to `10 * QUID` / `10 * DOLLARS` instead of `system_para_deposit(0, 176)`, aligning the proposer deposit with other fixed governance deposits on Asset Hub. ### Fixed diff --git a/system-parachains/asset-hubs/asset-hub-kusama/src/treasury.rs b/system-parachains/asset-hubs/asset-hub-kusama/src/treasury.rs index bf12d893a1..ad44645c8c 100644 --- a/system-parachains/asset-hubs/asset-hub-kusama/src/treasury.rs +++ b/system-parachains/asset-hubs/asset-hub-kusama/src/treasury.rs @@ -138,8 +138,7 @@ parameter_types! { ), xcm::latest::Junction::GeneralIndex(8)], ), ]; - // `176` is the size of the `Bounty` struct in bytes. - pub const BountyDepositBase: Balance = system_para_deposit(0, 176); + pub const BountyDepositBase: Balance = 10 * QUID; // per byte for the bounty description. pub const DataDepositPerByte: Balance = system_para_deposit(0, 1); pub const BountyDepositPayoutDelay: BlockNumber = 0; diff --git a/system-parachains/asset-hubs/asset-hub-polkadot/src/treasury.rs b/system-parachains/asset-hubs/asset-hub-polkadot/src/treasury.rs index a419c81114..1a6a3bec3b 100644 --- a/system-parachains/asset-hubs/asset-hub-polkadot/src/treasury.rs +++ b/system-parachains/asset-hubs/asset-hub-polkadot/src/treasury.rs @@ -91,8 +91,7 @@ parameter_types! { ), ), ]; - // `176` is the size of the `Bounty` struct in bytes. - pub const BountyDepositBase: Balance = system_para_deposit(0, 176); + pub const BountyDepositBase: Balance = 10 * DOLLARS; // per byte for the bounty description. pub const DataDepositPerByte: Balance = system_para_deposit(0, 1); pub const BountyDepositPayoutDelay: BlockNumber = 0;