Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
Loading