Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
polkadot-sdk
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
parity
Mirrored projects
polkadot-sdk
Commits
430edd75
Unverified
Commit
430edd75
authored
1 year ago
by
Nazar Mokrynskyi
Committed by
GitHub
1 year ago
Browse files
Options
Downloads
Patches
Plain Diff
Relax genesis config to not require `Default` impl (#1221)
Co-authored-by:
Oliver Tale-Yazdi
<
oliver.tale-yazdi@parity.io
>
parent
62f0a729
No related merge requests found
Pipeline
#385231
failed with stages
in 47 minutes and 50 seconds
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
substrate/frame/support/src/genesis_builder_helper.rs
+4
-1
4 additions, 1 deletion
substrate/frame/support/src/genesis_builder_helper.rs
substrate/frame/support/src/traits/hooks.rs
+2
-2
2 additions, 2 deletions
substrate/frame/support/src/traits/hooks.rs
with
6 additions
and
3 deletions
substrate/frame/support/src/genesis_builder_helper.rs
+
4
−
1
View file @
430edd75
...
...
@@ -25,7 +25,10 @@ use sp_runtime::format_runtime_string;
/// Get the default `GenesisConfig` as a JSON blob. For more info refer to
/// [`sp_genesis_builder::GenesisBuilder::create_default_config`]
pub
fn
create_default_config
<
GC
:
BuildGenesisConfig
>
()
->
sp_std
::
vec
::
Vec
<
u8
>
{
pub
fn
create_default_config
<
GC
>
()
->
sp_std
::
vec
::
Vec
<
u8
>
where
GC
:
BuildGenesisConfig
+
Default
,
{
serde_json
::
to_string
(
&
GC
::
default
())
.expect
(
"serialization to json is expected to work. qed."
)
.into_bytes
()
...
...
This diff is collapsed.
Click to expand it.
substrate/frame/support/src/traits/hooks.rs
+
2
−
2
View file @
430edd75
...
...
@@ -442,7 +442,7 @@ pub trait Hooks<BlockNumber> {
/// A trait to define the build function of a genesis config for both runtime and pallets.
///
/// Replaces deprecated [`GenesisBuild<T,I>`].
pub
trait
BuildGenesisConfig
:
Default
+
sp_runtime
::
traits
::
MaybeSerializeDeserialize
{
pub
trait
BuildGenesisConfig
:
sp_runtime
::
traits
::
MaybeSerializeDeserialize
{
/// The build function puts initial `GenesisConfig` keys/values pairs into the storage.
fn
build
(
&
self
);
}
...
...
@@ -452,7 +452,7 @@ pub trait BuildGenesisConfig: Default + sp_runtime::traits::MaybeSerializeDeseri
#[deprecated(
note
=
"GenesisBuild is planned to be removed in December 2023. Use BuildGenesisConfig instead of it."
)]
pub
trait
GenesisBuild
<
T
,
I
=
()
>
:
Default
+
sp_runtime
::
traits
::
MaybeSerializeDeserialize
{
pub
trait
GenesisBuild
<
T
,
I
=
()
>
:
sp_runtime
::
traits
::
MaybeSerializeDeserialize
{
/// The build function is called within an externalities allowing storage APIs.
/// Thus one can write to storage using regular pallet storages.
fn
build
(
&
self
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment