-
Notifications
You must be signed in to change notification settings - Fork 2.6k
Name changes for GrandPa and Beefy notifications protocols #10463
Name changes for GrandPa and Beefy notifications protocols #10463
Conversation
I think that the The reasons are:
|
A minor unrelated point is that I think it should be |
9a3978a
to
d4b616a
Compare
Yes! |
d4b616a
to
fcb9c8a
Compare
'fork_id' is used to uniquely identify forks of the same chain/network 'ChainSpec' trait provides default 'None' implementation, meaning this chain hasn't been forked.
fcb9c8a
to
b3a0243
Compare
Could you please not force push? 🙏 I was in the middle of reviewing and this ruins reviews in progress. |
👍 This looks good to me from a networking perspective, but I don't know what others think of the changes in |
bot merge |
Error: It's not possible to meet the minimal approval count of 1 in paritytech/polkadot#4519 |
bot merge |
Error: Response error (status 404 Not Found):
|
bot merge |
Anything parachain teams needs to be aware of about this? Will this cause any compatibility issues? |
Nothing changes for parachains. You just use And the code is also backwards compatible for the relay chain. |
…h#10463) * grandpa: update notif protocol name * grandpa: add chain id prefix to protocol name * grandpa: beautify protocol name handling * grandpa: prepend genesis hash to protocol name * chain-spec: add optional 'fork_id' 'fork_id' is used to uniquely identify forks of the same chain/network 'ChainSpec' trait provides default 'None' implementation, meaning this chain hasn't been forked. * grandpa: protocol_name mod instead of struct * beefy: add genesis hash prefix to protocol name * chainspec: add fork_id * grandpa: simplify protocol name * grandpa: contain protocol name building logic * beefy: contain protocol name building logic * grandpa: fix tests * fix merge damage * fix docs reference visibility Signed-off-by: acatangiu <[email protected]> * Update client/finality-grandpa/src/lib.rs Co-authored-by: Tomasz Drwięga <[email protected]> * Update client/finality-grandpa/src/communication/mod.rs Co-authored-by: Tomasz Drwięga <[email protected]> * Update client/beefy/src/lib.rs Co-authored-by: Tomasz Drwięga <[email protected]> * Update client/beefy/src/lib.rs Co-authored-by: Tomasz Drwięga <[email protected]> * avoid using hash default, even for protocol names Co-authored-by: Tomasz Drwięga <[email protected]>
* chore: bump Polkadot dependencies to v0.9.16 * refactor: use AllPalletsWithSystem hook * chore: remove crowdloan pallet * fix: apply no DefaultAccount check * fix: switch to default MaxEncodedLen paritytech/substrate#10662 * fix: apply asset quota + runtime state_version quota: paritytech/substrate#10382 state: paritytech/substrate#9732 * fix: Preimage registrar and Scheduler integration Scheduler: paritytech/substrate#10356 OriginPriviligeCmp: paritytech/polkadot#4166 * fix: OrderedSet * fix: apply new fork_id to chainspecs paritytech/substrate#10463 * fix: apply no default account for SudoConfig * fix: apply name changes for GrandPa paritytech/substrate#10463 * fix: EnsureOneOf paritytech/substrate#10379 * fix: preimage weights * fix: parachain client * fix: clippy copied weights * fix: bump deps * tests: attempt staking fix * bench: attempt to fix default accountid for dids * fix: staking unit test pallet order execution * fix: did unit benchmarks * fix: fmt * fix: revert to old hook order execution * bench: run manually for preimage + scheduler * fix: only import TaskManager for try-runtime feature * fix: use correct scheduler migration + add logs * refactor: use explicit para runtime executors * fix: apply code review by @Diiaablo95 * chore: apply suggestion from @weichweich review * chore: bump deps * fix: deps
…h#10463) * grandpa: update notif protocol name * grandpa: add chain id prefix to protocol name * grandpa: beautify protocol name handling * grandpa: prepend genesis hash to protocol name * chain-spec: add optional 'fork_id' 'fork_id' is used to uniquely identify forks of the same chain/network 'ChainSpec' trait provides default 'None' implementation, meaning this chain hasn't been forked. * grandpa: protocol_name mod instead of struct * beefy: add genesis hash prefix to protocol name * chainspec: add fork_id * grandpa: simplify protocol name * grandpa: contain protocol name building logic * beefy: contain protocol name building logic * grandpa: fix tests * fix merge damage * fix docs reference visibility Signed-off-by: acatangiu <[email protected]> * Update client/finality-grandpa/src/lib.rs Co-authored-by: Tomasz Drwięga <[email protected]> * Update client/finality-grandpa/src/communication/mod.rs Co-authored-by: Tomasz Drwięga <[email protected]> * Update client/beefy/src/lib.rs Co-authored-by: Tomasz Drwięga <[email protected]> * Update client/beefy/src/lib.rs Co-authored-by: Tomasz Drwięga <[email protected]> * avoid using hash default, even for protocol names Co-authored-by: Tomasz Drwięga <[email protected]>
…h#10463) * grandpa: update notif protocol name * grandpa: add chain id prefix to protocol name * grandpa: beautify protocol name handling * grandpa: prepend genesis hash to protocol name * chain-spec: add optional 'fork_id' 'fork_id' is used to uniquely identify forks of the same chain/network 'ChainSpec' trait provides default 'None' implementation, meaning this chain hasn't been forked. * grandpa: protocol_name mod instead of struct * beefy: add genesis hash prefix to protocol name * chainspec: add fork_id * grandpa: simplify protocol name * grandpa: contain protocol name building logic * beefy: contain protocol name building logic * grandpa: fix tests * fix merge damage * fix docs reference visibility Signed-off-by: acatangiu <[email protected]> * Update client/finality-grandpa/src/lib.rs Co-authored-by: Tomasz Drwięga <[email protected]> * Update client/finality-grandpa/src/communication/mod.rs Co-authored-by: Tomasz Drwięga <[email protected]> * Update client/beefy/src/lib.rs Co-authored-by: Tomasz Drwięga <[email protected]> * Update client/beefy/src/lib.rs Co-authored-by: Tomasz Drwięga <[email protected]> * avoid using hash default, even for protocol names Co-authored-by: Tomasz Drwięga <[email protected]>
polkadot companion: paritytech/polkadot#4519
cumulus companion: paritytech/cumulus#870
First commit still uses static protocol name, but removes
paritytech
.Following commits add support for building dynamic protocol name using
/<genesis-hash>
prefix./<fork-id>
is also appended to the prefix if the chain has forked.Introduces
fork_id
in the substrateChainSpec
definition.Fixes #7252
Fixes paritytech/grandpa-bridge-gadget#240
Related to #7746