Only answers with less than 0.01% are filtered from feed.

This commit is contained in:
James Grugett 2022-03-19 01:13:37 -05:00
parent d6a751d9a2
commit f00064732d

View File

@ -186,7 +186,7 @@ function getAnswerGroups(
const { sortByProb, abbreviated } = options
let outcomes = _.uniq(bets.map((bet) => bet.outcome)).filter(
(outcome) => getOutcomeProbability(contract, outcome) > 0.01
(outcome) => getOutcomeProbability(contract, outcome) > 0.0001
)
if (abbreviated) {
const lastComment = _.last(comments)