revive: Include immutable storage deposit into the contracts `storage_base_deposit` (#7230)
This PR is centered around a main fix regarding the base deposit and a bunch of drive by or related fixtures that make sense to resolve in one go. It could be broken down more but I am constantly rebasing this PR and would appreciate getting those fixes in as-one. **This adds a multi block migration to Westend AssetHub that wipes the pallet state clean. This is necessary because of the changes to the `ContractInfo` storage item. It will not delete the child storage though. This will leave a tiny bit of garbage behind but won't cause any problems. They will just be orphaned.** ## Record the deposit for immutable data into the `storage_base_deposit` The `storage_base_deposit` are all the deposit a contract has to pay for existing. It included the deposit for its own metadata and a deposit proportional (< 1.0x) to the size of its code. However, the immutable code size was not recorded there. This would lead to the ...
parent
a8834759
Showing
- Cargo.lock 2 additions, 0 deletionsCargo.lock
- cumulus/parachains/runtimes/assets/asset-hub-westend/Cargo.toml 4 additions, 0 deletions...s/parachains/runtimes/assets/asset-hub-westend/Cargo.toml
- cumulus/parachains/runtimes/assets/asset-hub-westend/src/lib.rs 22 additions, 0 deletions...s/parachains/runtimes/assets/asset-hub-westend/src/lib.rs
- cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/mod.rs 1 addition, 0 deletions...ains/runtimes/assets/asset-hub-westend/src/weights/mod.rs
- cumulus/parachains/runtimes/assets/asset-hub-westend/src/weights/pallet_migrations.rs 225 additions, 0 deletions...assets/asset-hub-westend/src/weights/pallet_migrations.rs
- cumulus/parachains/runtimes/people/people-rococo/src/weights/pallet_migrations.rs 124 additions, 69 deletions...mes/people/people-rococo/src/weights/pallet_migrations.rs
- cumulus/parachains/runtimes/people/people-westend/src/weights/pallet_migrations.rs 124 additions, 69 deletions...es/people/people-westend/src/weights/pallet_migrations.rs
- polkadot/runtime/rococo/src/weights/pallet_migrations.rs 109 additions, 57 deletionspolkadot/runtime/rococo/src/weights/pallet_migrations.rs
- polkadot/runtime/westend/src/weights/pallet_migrations.rs 109 additions, 57 deletionspolkadot/runtime/westend/src/weights/pallet_migrations.rs
- prdoc/pr_7230.prdoc 46 additions, 0 deletionsprdoc/pr_7230.prdoc
- substrate/frame/migrations/Cargo.toml 6 additions, 1 deletionsubstrate/frame/migrations/Cargo.toml
- substrate/frame/migrations/src/benchmarking.rs 37 additions, 0 deletionssubstrate/frame/migrations/src/benchmarking.rs
- substrate/frame/migrations/src/lib.rs 5 additions, 0 deletionssubstrate/frame/migrations/src/lib.rs
- substrate/frame/migrations/src/migrations.rs 135 additions, 0 deletionssubstrate/frame/migrations/src/migrations.rs
- substrate/frame/migrations/src/weights.rs 128 additions, 95 deletionssubstrate/frame/migrations/src/weights.rs
- substrate/frame/revive/fixtures/contracts/create_storage_and_instantiate.rs 9 additions, 1 deletion...vive/fixtures/contracts/create_storage_and_instantiate.rs
- substrate/frame/revive/fixtures/contracts/locking_delegate_dependency.rs 0 additions, 77 deletions.../revive/fixtures/contracts/locking_delegate_dependency.rs
- substrate/frame/revive/fixtures/contracts/self_destruct.rs 4 additions, 1 deletionsubstrate/frame/revive/fixtures/contracts/self_destruct.rs
- substrate/frame/revive/src/benchmarking/mod.rs 2 additions, 52 deletionssubstrate/frame/revive/src/benchmarking/mod.rs
- substrate/frame/revive/src/exec.rs 122 additions, 167 deletionssubstrate/frame/revive/src/exec.rs
Please register or sign in to comment