built the system to sequentually pick up old ephemerals, breaks interfaces and tests
Merged
built the system to sequentually pick up old ephemerals, breaks interfaces and tests
delayedOldPickup
into
release
3 unresolved threads
3 unresolved threads
Merge request reports
Activity
assigned to @carback1
added 1 commit
- 32e41778 - fixed interfaces and tests, improved code in prune
42 43 } 43 44 44 45 // Add channel's identity 45 net.AddIdentity(channel.ReceptionID, identity.Forever, true) 46 net.AddIdentityWithHistory(channel.ReceptionID, identity.Forever, 47 time.Now().Add(-500*time.Second), true) changed this line in version 6 of the diff
355 380 } 356 381 357 382 newIdentity.Ephemeral = !inQuestion.Persistent 358 if err := t.ephemeral.AddIdentity(newIdentity); err != nil { 359 jww.FATAL.Panicf("Could not insert identity: %+v", err) 383 384 // If the identity expired before the current time, we know it 385 // is no longer valid and should be added to the chain 386 if netTime.Now().After(newIdentity.EndValid) { 387 identitiesToChain = append(identitiesToChain, newIdentity) added 1 commit
- bfbe7df8 - another fixed how bounds for when to generate historical identities are created
added 1 commit
- ac0564dc - improved code quality on the selection of the identtiy range
mentioned in commit 9f32f78b
Please register or sign in to reply