Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
duniter
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
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
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
typescript
duniter
Merge requests
!1293
Feature/info peers
Code
Review changes
Check out branch
Download
Patches
Plain diff
Closed
Feature/info peers
tykayn/duniter:feature/info-peers
into
dev
Overview
14
Commits
2
Pipelines
11
Changes
2
All threads resolved!
Hide all comments
Closed
ty kayn
requested to merge
tykayn/duniter:feature/info-peers
into
dev
5 years ago
Overview
14
Commits
2
Pipelines
11
Changes
2
All threads resolved!
Hide all comments
Expand
gives an info log instead of throwing an error about no already known peers
add pubkey info when running the wizard to generate a new keypair
fix doc for Scrypt vars
0
0
Merge request reports
Compare
dev
version 11
c60333d1
5 years ago
version 10
fe0fc5e8
5 years ago
version 9
a333b54a
5 years ago
version 8
c6b5d8ca
5 years ago
version 7
db0c3540
5 years ago
version 6
302a3b22
5 years ago
version 5
83745a23
5 years ago
version 4
54e69024
5 years ago
version 3
64e3d2ad
5 years ago
version 2
7ad9c4e7
5 years ago
version 1
b0ec6a7a
5 years ago
dev (base)
and
latest version
latest version
c60333d1
2 commits,
5 years ago
version 11
c60333d1
4 commits,
5 years ago
version 10
fe0fc5e8
4 commits,
5 years ago
version 9
a333b54a
5 commits,
5 years ago
version 8
c6b5d8ca
4 commits,
5 years ago
version 7
db0c3540
4 commits,
5 years ago
version 6
302a3b22
4 commits,
5 years ago
version 5
83745a23
26 commits,
5 years ago
version 4
54e69024
4 commits,
5 years ago
version 3
64e3d2ad
25 commits,
5 years ago
version 2
7ad9c4e7
4 commits,
5 years ago
version 1
b0ec6a7a
4 commits,
5 years ago
2 files
+
15
−
4
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
2
Search (e.g. *.vue) (Ctrl+P)
app/modules/keypair/index.ts
+
5
−
3
Options
@@ -34,17 +34,19 @@ export const KeypairDependency = {
},
{
value
:
"
--keyN <N>
"
,
desc
:
"
Scrypt `N` parameter. Defaults to 4096.
"
,
desc
:
"
Scrypt `N` CPU/memory cost parameter. Must be a power of 2. Defaults to 4096.
"
,
parser
:
parseInt
,
},
{
value
:
"
--keyr <r>
"
,
desc
:
"
Scrypt `N` parameter. Defaults to 16.
"
,
desc
:
"
Scrypt `r` The blocksize parameter, which fine-tunes sequential memory read size and performance. Defaults to 16.
"
,
parser
:
parseInt
,
},
{
value
:
"
--keyp <p>
"
,
desc
:
"
Scrypt `
N`
parameter. Defaults to 1.
"
,
desc
:
"
Scrypt `
p` Parallelization
parameter. Defaults to 1.
"
,
parser
:
parseInt
,
},
{
Loading