paritytech / extended-parachain-template

Node template to build parachains with all the required pallets. Slightly opinionated based on what majority of parachain teams are using.
The Unlicense
27 stars 19 forks source link

Uplift dependencies to polkadot-v0.9.42 #27

Closed weezy20 closed 1 year ago

weezy20 commented 1 year ago

Notable changes :

impl pallet_balances::Config for Test {
    // -- Existing parameters --
    type HoldIdentifier = ();
    type FreezeIdentifier = ();
    type MaxHolds = ConstU32<0>;
    type MaxFreezes = ConstU32<0>;
}

Closes #24

weezy20 commented 1 year ago

~Todo~ Done ✅ : Introduce Weights v2 and close #26

stiiifff commented 1 year ago

@weezy20 Just spotted some missing changes in the node/src/cli.rs (see here), if you can add them, we'll be good !

weezy20 commented 1 year ago

Just added it (38f72f70ef8eba881358d5db4c62f8b988962cd9)

weezy20 commented 1 year ago

@stiiifff Opened a PR #34 with changes in GA workflow file to make CI pass. Let's also review and merge that here as a final step, before we merge this into main

stiiifff commented 1 year ago

Build is ok locally. LGTM and fix the CI in a separate PR.