RamonMeffert / elm-gossip

A user-friendly web tool for exploring dynamic gossip.
https://r3n.nl/elm-gossip/
GNU General Public License v3.0
3 stars 0 forks source link

Call sequence incorrectly not permissible for ANY (still) #54

Closed RamonMeffert closed 3 years ago

RamonMeffert commented 3 years ago

Fixes #53

The problem was in the Relation.knows function. It evaluated to False on the query Relation.knows 1 2 Number { from = 1, to = 2, kind = Secret }, even though that should evaluate to True. The function now uses Relation.atLeast to make sure that the check is correct.