-
Notifications
You must be signed in to change notification settings - Fork 88
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* upgrade: `polkadot-sdk` to `stable2412` include `frontier` and `subxt` etc. * fix: since the upgrade to the polkadot-stable2412 version (actually stable2409), running a chain node requires the node-key to be generated first * fix: the issue of variable passing in the sub makefile call not working * fix: compile warnings of `ces-pdp` * fix: we don't care about the justification, a new sync mechanism will be introduced in the next version. * refactor: correct the function name corresponding to the `chain-spec` * refactor: works for `chain_spec.rs` about authority key and `ss58Prefix` * unify duplicate authority key tuple type into alias type; * unify the values of `ss58Format` and EVM `chain_id` into the runtime `SS58Prefix` * bump `cess-node-runtime` to 0.9.1 * bump `cess-node` version to 0.8.2 * bump `cifrost` version to 0.2.3 * bump `ceseal` version to 0.3.4 * bump `spec_version` to 125
- Loading branch information
Showing
48 changed files
with
6,630 additions
and
6,456 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,7 @@ | ||
pub mod tx; | ||
|
||
use subxt::dynamic::{self, Value}; | ||
|
||
pub fn storage_key(pallet: &str, entry: &str) -> Vec<u8> { | ||
::subxt::dynamic::storage(pallet, entry, Vec::<()>::new()).to_root_bytes() | ||
dynamic::storage(pallet, entry, Vec::<Value>::new()).to_root_bytes() | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.