Skip to content

Commit

Permalink
GossipSnapshotter: fix readIntermediates
Browse files Browse the repository at this point in the history
  • Loading branch information
aarani committed Jun 5, 2023
1 parent f5c09c8 commit c4b76c1
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion DotNetRGS/GossipSnapshotter.fs
Expand Up @@ -531,7 +531,10 @@ type GossipSnapshotter
updateMsg.Contents
}

else
else if
direction
&& not(snd previouslySeenDirections)
then
previouslySeenDirections <-
fst previouslySeenDirections,
true
Expand Down

1 comment on commit c4b76c1

@knocte
Copy link

@knocte knocte commented on c4b76c1 Jun 5, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@aarani in F#, else if is called elif

Please sign in to comment.