You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Double check that components synch data from the chain in a robust way and that they have a consistent view of the chain state (ie. we don't up with archiver at block 20 and world state at block 17 and then the sequencer tries to build block 21 based on block 17's tree roots)
The text was updated successfully, but these errors were encountered:
This PR adds a persistent database to PXE. I've created a new package in
the monorepo called `@aztec/kv-store` which exports a set of general
data structures that can be used by components to store state in
consistent manner. The only implementation right now is with LMDB (both
persisted on disk and in-memory/temporary file).
This higher level abstraction allowed me to easily add storage to ~PXE's
note processors, its synchronizer and~ the key store too.
Fix#3364
Changes to the synchronizer and note processors have been taken out and
will be merged in a separate PR (as part of #3570) because it will
require some changes to the benchmarking code.
Synch changes here #3673
This PR adds a persistent database to PXE. I've created a new package in
the monorepo called `@aztec/kv-store` which exports a set of general
data structures that can be used by components to store state in
consistent manner. The only implementation right now is with LMDB (both
persisted on disk and in-memory/temporary file).
This higher level abstraction allowed me to easily add storage to ~PXE's
note processors, its synchronizer and~ the key store too.
FixAztecProtocol#3364
Changes to the synchronizer and note processors have been taken out and
will be merged in a separate PR (as part of AztecProtocol#3570) because it will
require some changes to the benchmarking code.
Synch changes here AztecProtocol#3673
Double check that components synch data from the chain in a robust way and that they have a consistent view of the chain state (ie. we don't up with archiver at block 20 and world state at block 17 and then the sequencer tries to build block 21 based on block 17's tree roots)
The text was updated successfully, but these errors were encountered: