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
05ff32d5
Verified
Commit
05ff32d5
authored
1 year ago
by
Michal Kucharczyk
Browse files
Options
Downloads
Patches
Plain Diff
test-runtime: dev
parent
f58e4eb1
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
substrate/test-utils/runtime/Cargo.toml
+0
-1
0 additions, 1 deletion
substrate/test-utils/runtime/Cargo.toml
substrate/test-utils/runtime/src/lib.rs
+9
-6
9 additions, 6 deletions
substrate/test-utils/runtime/src/lib.rs
with
9 additions
and
7 deletions
substrate/test-utils/runtime/Cargo.toml
+
0
−
1
View file @
05ff32d5
...
...
@@ -99,7 +99,6 @@ std = [
"sp-genesis-builder/std"
,
"sp-inherents/std"
,
"sp-io/std"
,
"sp-keyring"
,
"sp-offchain/std"
,
"sp-runtime/std"
,
"sp-session/std"
,
...
...
This diff is collapsed.
Click to expand it.
substrate/test-utils/runtime/src/lib.rs
+
9
−
6
View file @
05ff32d5
...
...
@@ -472,7 +472,9 @@ pub const TEST_RUNTIME_BABE_EPOCH_CONFIGURATION: BabeEpochConfiguration = BabeEp
use
hex_literal
::
hex
;
use
serde_json
::
json
;
use
sp_application_crypto
::
Ss58Codec
;
use
sp_core
::
crypto
::
UncheckedInto
;
use
sp_keyring
::
AccountKeyring
;
fn
substrate_test_genesis_config_patch
()
->
serde_json
::
Value
{
let
endowed_accounts
:
sp_std
::
vec
::
Vec
<
AccountId
>
=
vec!
[
// 5DwBmEFPXRESyEam5SsQF1zbWSCn2kCjyLW51hJHXe9vW4xs
...
...
@@ -484,6 +486,7 @@ fn substrate_test_genesis_config_patch() -> serde_json::Value {
//5FPMzsezo1PRxYbVpJMWK7HNbR2kUxidsAAxH4BosHa4wd6S
hex!
[
"92ef83665b39d7a565e11bf8d18d41d45a8011601c339e57a8ea88c8ff7bba6f"
]
.unchecked_into
(),
];
log
::
info!
(
"xxx: {} {}"
,
file!
(),
line!
());
let
patch
=
json!
({
"balances"
:
{
...
...
@@ -498,12 +501,12 @@ fn substrate_test_genesis_config_patch() -> serde_json::Value {
"allowed_slots"
:
"PrimaryAndSecondaryPlainSlots"
}
},
//
"substrateTest": {
//
"authorities": [
//
AccountKeyring::Ferdie.public().to_ss58check(),
//
AccountKeyring::Alice.public().to_ss58check()
//
],
//
}
"substrateTest"
:
{
"authorities"
:
[
AccountKeyring
::
Ferdie
.public
()
.to_ss58check
(),
AccountKeyring
::
Alice
.public
()
.to_ss58check
()
],
}
});
patch
}
...
...
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