We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ea61c97 commit ba92e0bCopy full SHA for ba92e0b
1 file changed
wsapi/wsapi.go
@@ -327,13 +327,10 @@ func handleEntryBlock(ctx *web.Context, keymr string) {
327
estack := make([]entryaddr, 0)
328
for _, v := range block.Body.EBEntries {
329
if n, exist := mins[v.String()]; exist {
330
- fmt.Println("DEBUG: found minute marker", n)
331
// the entry is a minute marker. add time to all of the
332
// previous entries for the minute
333
t := e.Header.TimeStamp + 60 * uint32(n)
334
- fmt.Println("DEBUG: new timestamp is", t)
335
for _, w := range estack {
336
- fmt.Println("DEBUG: adding timestamp to entry", t, w)
337
w.TimeStamp = t
338
e.EntryList = append(e.EntryList, w)
339
}
0 commit comments