Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Duniter v2S
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Monitor
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
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
nodes
rust
Duniter v2S
Merge requests
!218
Refactor pallet_identity
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Refactor pallet_identity
bgallois/duniter-v2s:pallet_identity_refactoring
into
master
Overview
2
Commits
7
Pipelines
26
Changes
23
Merged
Benjamin Gallois
requested to merge
bgallois/duniter-v2s:pallet_identity_refactoring
into
master
1 year ago
Overview
2
Commits
7
Pipelines
26
Changes
23
Expand
AccountLinker
optimization
Remove unused
BenchmarkSetupHandler
Fix clippy errors with runtime-benchmarks feature on
Enforce clippy for benchmarks
close
#103 (closed)
Edited
1 year ago
by
Benjamin Gallois
0
0
1
Merge request reports
Compare
master
version 15
a9e445bb
1 year ago
version 14
ca158ef9
1 year ago
version 13
466f2b4a
1 year ago
version 12
3ecadd39
1 year ago
version 11
e50a7cd1
1 year ago
version 10
7b45a25c
1 year ago
version 9
21299ee3
1 year ago
version 8
fdb9cde1
1 year ago
version 7
1771de11
1 year ago
version 6
b8f0e439
1 year ago
version 5
aadee12c
1 year ago
version 4
4aec7867
1 year ago
version 3
d090f8ea
1 year ago
version 2
5c2fbfc9
1 year ago
version 1
0aeaa78c
1 year ago
master (base)
and
latest version
latest version
63d863e0
7 commits,
1 year ago
version 15
a9e445bb
8 commits,
1 year ago
version 14
ca158ef9
7 commits,
1 year ago
version 13
466f2b4a
7 commits,
1 year ago
version 12
3ecadd39
7 commits,
1 year ago
version 11
e50a7cd1
7 commits,
1 year ago
version 10
7b45a25c
7 commits,
1 year ago
version 9
21299ee3
7 commits,
1 year ago
version 8
fdb9cde1
7 commits,
1 year ago
version 7
1771de11
7 commits,
1 year ago
version 6
b8f0e439
5 commits,
1 year ago
version 5
aadee12c
5 commits,
1 year ago
version 4
4aec7867
5 commits,
1 year ago
version 3
d090f8ea
4 commits,
1 year ago
version 2
5c2fbfc9
3 commits,
1 year ago
version 1
0aeaa78c
2 commits,
1 year ago
23 files
+
91
−
99
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
23
Search (e.g. *.vue) (Ctrl+P)
node/src/command.rs
+
6
−
6
Options
@@ -310,20 +310,20 @@ pub fn run() -> sc_cli::Result<()> {
let
chain_spec
=
&
runner
.config
()
.chain_spec
;
match
&**
cmd
{
BenchmarkCmd
::
Storage
(
cmd
)
=>
runner
.sync_run
(|
mut
config
|
{
let
(
client
,
backend
,
_
,
_
)
=
service
::
new_chain_ops
(
&
mut
config
,
false
)
?
;
BenchmarkCmd
::
Storage
(
cmd
)
=>
runner
.sync_run
(|
config
|
{
let
(
client
,
backend
,
_
,
_
)
=
service
::
new_chain_ops
(
&
config
,
false
)
?
;
let
db
=
backend
.expose_db
();
let
storage
=
backend
.expose_storage
();
unwrap_client!
(
client
,
cmd
.run
(
config
,
client
.clone
(),
db
,
storage
))
}),
BenchmarkCmd
::
Block
(
cmd
)
=>
runner
.sync_run
(|
mut
config
|
{
let
(
client
,
_
,
_
,
_
)
=
service
::
new_chain_ops
(
&
mut
config
,
false
)
?
;
BenchmarkCmd
::
Block
(
cmd
)
=>
runner
.sync_run
(|
config
|
{
let
(
client
,
_
,
_
,
_
)
=
service
::
new_chain_ops
(
&
config
,
false
)
?
;
unwrap_client!
(
client
,
cmd
.run
(
client
.clone
()))
}),
BenchmarkCmd
::
Overhead
(
cmd
)
=>
runner
.sync_run
(|
mut
config
|
{
let
(
client
,
_
,
_
,
_
)
=
service
::
new_chain_ops
(
&
mut
config
,
false
)
?
;
BenchmarkCmd
::
Overhead
(
cmd
)
=>
runner
.sync_run
(|
config
|
{
let
(
client
,
_
,
_
,
_
)
=
service
::
new_chain_ops
(
&
config
,
false
)
?
;
let
wrapped
=
client
.clone
();
let
inherent_data
=
crate
::
service
::
client
::
benchmark_inherent_data
()
Loading