Skip to content

Commit

Permalink
Remove test that prevented updating replay filters around entry reveals
Browse files Browse the repository at this point in the history
  • Loading branch information
PaulSnow committed Mar 15, 2019
1 parent 2974263 commit 77352f6
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions state/entrySyncing.go
Expand Up @@ -240,13 +240,13 @@ func (s *State) GoSyncEntries() {
if entryhash.IsMinuteMarker() {
continue
}
if scan <= firstUpdate {
// Only update the replay hashes in the last 24 hours.
ueh := new(EntryUpdate)
ueh.Hash = entryhash
ueh.Timestamp = db.GetTimestamp()
s.UpdateEntryHash <- ueh
}

// Only update the replay hashes in the last 24 hours.
ueh := new(EntryUpdate)
ueh.Hash = entryhash
ueh.Timestamp = db.GetTimestamp()
s.UpdateEntryHash <- ueh

}
}
}
Expand Down

0 comments on commit 77352f6

Please sign in to comment.