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
!82
cucumber test for identity creation
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
cucumber test for identity creation
hugo-cucumber-identity
into
master
Overview
17
Commits
5
Pipelines
0
Changes
1
All threads resolved!
Hide all comments
Merged
Hugo Trentesaux
requested to merge
hugo-cucumber-identity
into
master
2 years ago
Overview
17
Commits
5
Pipelines
0
Changes
1
All threads resolved!
Hide all comments
Expand
Add a cucumber test for identity creation scenario.
Edited
2 years ago
by
Hugo Trentesaux
0
0
Merge request reports
Viewing commit
d5967be0
Show latest version
1 file
+
2
−
2
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
d5967be0
fix(wot): typo MinCertForCreateIdtyRigh -> MinCertForCreateIdtyRight
· d5967be0
Hugo Trentesaux
authored
2 years ago
pallets/duniter-wot/src/mock.rs
+
2
−
2
Options
@@ -92,14 +92,14 @@ impl system::Config for Test {
// DuniterWot
parameter_types!
{
pub
const
MinCertForMembership
:
u32
=
2
;
pub
const
MinCertForCreateIdtyRigh
:
u32
=
4
;
pub
const
MinCertForCreateIdtyRigh
t
:
u32
=
4
;
pub
const
FirstIssuableOn
:
u64
=
2
;
}
impl
pallet_duniter_wot
::
Config
<
Instance1
>
for
Test
{
type
IsSubWot
=
frame_support
::
traits
::
ConstBool
<
false
>
;
type
MinCertForMembership
=
MinCertForMembership
;
type
MinCertForCreateIdtyRight
=
MinCertForCreateIdtyRigh
;
type
MinCertForCreateIdtyRight
=
MinCertForCreateIdtyRigh
t
;
type
FirstIssuableOn
=
FirstIssuableOn
;
}
Loading