bump sidecar

This commit is contained in:
Cassandra Heart 2025-03-27 23:22:14 -05:00
parent 13400ec85c
commit 40a94b1863
No known key found for this signature in database
GPG Key ID: 6352152859385958
4 changed files with 722 additions and 442 deletions

View File

@ -147,9 +147,9 @@ func TestHandlePreMidnightMint(t *testing.T) {
preMidnightMint: map[string]struct{}{},
}
d.dataTimeReel.SetHead(&protobufs.ClockFrame{
FrameNumber: 0,
})
// d.dataTimeReel.SetHead(&protobufs.ClockFrame{
// FrameNumber: 0,
// })
d.pubSub = pubsub{
privkey: bprivKey,

File diff suppressed because it is too large Load Diff

View File

@ -66,6 +66,7 @@ func TestLoadHypergraphFallback(t *testing.T) {
assert.Equal(t, len(crypto.ConvertAllPreloadedLeaves(string(application.VertexAtomType), string(application.AddsPhaseType), k, serverHypergraphStore, a.GetTree().Root, []int{})), 100000)
}
for k, a := range clientLoad.GetVertexAdds() {
fmt.Printf("%x\n", a.GetTree().Commit(true))
assert.Equal(t, len(crypto.ConvertAllPreloadedLeaves(string(application.VertexAtomType), string(application.AddsPhaseType), k, clientHypergraphStore, a.GetTree().Root, []int{})), 100000)
}

View File

@ -59,7 +59,6 @@ var frameProver qcrypto.FrameProver
var inclusionProver qcrypto.InclusionProver
var keyManager keys.KeyManager
var lastProven uint64
var proverTrie *tries.RollingFrecencyCritbitTrie
func main() {
flag.Parse()
@ -71,7 +70,7 @@ func main() {
done := make(chan os.Signal, 1)
signal.Notify(done, syscall.SIGINT, syscall.SIGTERM)
recentlyProcessedFrames, _ = lru.New[string, struct{}](25)
logger, _ = zap.NewDevelopment()
logger, _ = zap.NewProduction()
var privKey crypto.PrivKey
keyManager,
_,