-
Notifications
You must be signed in to change notification settings - Fork 46
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
upgrade to polkadot 1.5.0 #816
upgrade to polkadot 1.5.0 #816
Conversation
3a062fa
to
7c3500f
Compare
node/src/service.rs
Outdated
@@ -251,6 +253,7 @@ where | |||
relay_chain_interface: relay_chain_interface.clone(), | |||
import_queue: params.import_queue, | |||
net_config, | |||
sybil_resistance_level: cumulus_client_service::CollatorSybilResistance::Unresistant, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Could we be resistant?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
pub enum CollatorSybilResistance {
/// There is a collator-selection protocol which provides sybil-resistance,
/// such as Aura. Sybil-resistant collator-selection protocols are able to
/// operate more efficiently.
Resistant,
/// There is no collator-selection protocol providing sybil-resistance.
/// In situations such as "free-for-all" collators, the network is unresistant
/// and needs to attach more metadata to block announcements, relying on relay-chain
/// validators to avoid handling unbounded numbers of blocks.
Unresistant,
}
I read this as we should mark if we are resistant or not. So I think we should pick Unresistant
here
runtimes/eden/src/lib.rs
Outdated
[pallet_contracts, Contracts] | ||
[pallet_identity, Identity] | ||
[pallet_membership, TechnicalMembership] | ||
// [pallet_xcm, PolkadotXcm] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Reminder pallet_xcm benchmark
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Still TODO save this for 1.6
runtimes/eden/src/xcm_config.rs
Outdated
type ControllerOrigin = EnsureRoot<AccountId>; | ||
type ControllerOriginConverter = XcmOriginToTransactDispatchOrigin; | ||
type WeightInfo = cumulus_pallet_xcmp_queue::weights::SubstrateWeight<Self>; | ||
type PriceForSiblingDelivery = (); | ||
type PriceForSiblingDelivery = NoPriceForMessageDelivery<ParaId>; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Reminder to review
47db6f4
to
5ef3389
Compare
This reverts commit 5ef3389.
* Upgrade to polkadot 1.1.0 (#800) * Upgrade towards 1.1.0 * Update CI version * polkadot 1.1 dependencies * Merge updates for benchmarks * upgrade to polkadot 1.2.1 (#804) * Upgrade to 1.2.0 integrate PreImage Pallet * Test cases remove deprecated calls * Upgrade to polkadot 1.3.0 * ORML force update * Benchmark tests * Migration for pallet_uniques * Remove Clippy Warnings * Remove dead code * Upgrade to polkadot 1.4.0 (#814) * Remove ReachableDest * XCM config * Use define_benchmarks! * upgrade to polkadot 1.5.0 (#816) * Upgrade to 1.5.0 * Remove migrations completed in Spec 27 * Use release tag * Upgrade to 1.6.0 * Upgrade calls to 1.6.0 API * Dwellir hostname change * Update weights * Update service.rs and command.rs from latest template * Workspace dependencies * Get substrate from crates.io * Storage migrations * Reintegrate orml * Silence warning * Cargo.toml reformat * Fix failing benchmarks * XCM benchmarks * Clippy * CI srtool * Update weights * Use benchmark for reserve_asset_deposited() * Use only two collators for dev nets * SR tool version * Update runtimes/eden/src/pallets_parachain.rs * Update runtimes/eden/src/pallets_util.rs * Update node/src/command.rs * Use Polkadot ED * Integrate proxy pallet * Add pallet_proxy benchmarks * Separate weights for all pallets * Code cleanup * Benchmarks * Auto fmt * Refactor benchmark script * feat(nodle-parachain): use wasm executor * Remove sponsorship migration * Default ports Relay chain default rpc port different from parachain default port * Docker example in Readme verified to work * The docker example uses all necessary parameters. Is readable and runable at the same time. * Set base delivery fee in DOT derived constant close CHA-407 close #738 close #825 close #824 --------- Co-authored-by: Alex Sedighi <alex@nodle.com>
Regular release checklist
Known issues