Fixup, add trailing commas
This commit is contained in:
parent
7eddd66385
commit
e602466800
|
@ -190,7 +190,7 @@ export class Forum extends ReputationHolder {
|
||||||
depth = 0,
|
depth = 0,
|
||||||
initialNegative = false,
|
initialNegative = false,
|
||||||
referenceChainLimit,
|
referenceChainLimit,
|
||||||
leachingValue
|
leachingValue,
|
||||||
}) {
|
}) {
|
||||||
const postVertex = edge.to;
|
const postVertex = edge.to;
|
||||||
const post = postVertex.data;
|
const post = postVertex.data;
|
||||||
|
@ -260,7 +260,7 @@ export class Forum extends ReputationHolder {
|
||||||
depth: depth + 1,
|
depth: depth + 1,
|
||||||
initialNegative: initialNegative || (depth === 0 && outboundAmount < 0),
|
initialNegative: initialNegative || (depth === 0 && outboundAmount < 0),
|
||||||
referenceChainLimit,
|
referenceChainLimit,
|
||||||
leachingValue
|
leachingValue,
|
||||||
});
|
});
|
||||||
|
|
||||||
// Any excess (negative) amount that could not be propagated,
|
// Any excess (negative) amount that could not be propagated,
|
||||||
|
|
Loading…
Reference in New Issue