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
Commits
60266f5d
Commit
60266f5d
authored
4 years ago
by
Éloïs
Browse files
Options
Downloads
Patches
Plain Diff
[fix]computation:checkHaveEnoughLinks must never count same issuer twice
#1402
parent
04d16320
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
app/lib/computation/BlockchainContext.ts
+14
-4
14 additions, 4 deletions
app/lib/computation/BlockchainContext.ts
with
14 additions
and
4 deletions
app/lib/computation/BlockchainContext.ts
+
14
−
4
View file @
60266f5d
...
...
@@ -18,6 +18,7 @@ import { FileDAL } from "../dal/fileDAL";
import
{
DBBlock
}
from
"
../db/DBBlock
"
;
import
{
Underscore
}
from
"
../common-libs/underscore
"
;
import
{
DataErrors
}
from
"
../common-libs/errors
"
;
import
{
Map
}
from
"
../common-libs/crypto/map
"
;
const
indexer
=
require
(
"
../indexer
"
).
Indexer
;
const
constants
=
require
(
"
../constants
"
);
...
...
@@ -213,12 +214,21 @@ export class BlockchainContext {
return
this
.
dal
.
getCurrentBlockOrNull
();
}
async
checkHaveEnoughLinks
(
target
:
string
,
newLinks
:
any
):
Promise
<
any
>
{
const
links
=
await
this
.
dal
.
getValidLinksTo
(
target
);
let
count
=
links
.
length
;
async
checkHaveEnoughLinks
(
target
:
string
,
newLinks
:
Map
<
string
[]
>
):
Promise
<
void
>
{
const
existingLinks
=
await
this
.
dal
.
getValidLinksTo
(
target
);
const
existingIssuers
=
existingLinks
.
map
((
value
)
=>
value
.
issuer
);
let
count
=
existingIssuers
.
length
;
if
(
newLinks
[
target
]
&&
newLinks
[
target
].
length
)
{
count
+=
newLinks
[
target
].
length
;
const
uniqIssuers
=
Underscore
.
uniq
(
existingIssuers
.
concat
(
newLinks
[
target
])
);
count
=
uniqIssuers
.
length
;
}
if
(
count
<
this
.
conf
.
sigQty
)
{
throw
(
"
Key
"
+
...
...
This diff is collapsed.
Click to expand it.
Éloïs
@librelois
mentioned in issue
#1402 (closed)
·
4 years ago
mentioned in issue
#1402 (closed)
mentioned in issue #1402
Toggle commit list
Preview
0%
Loading
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