-
Notifications
You must be signed in to change notification settings - Fork 219
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat(dan/engine): adds single state storage interface #4368
Merged
stringhandler
merged 12 commits into
tari-project:development
from
sdbondi:dan-layer-state-store
Aug 4, 2022
Merged
feat(dan/engine): adds single state storage interface #4368
stringhandler
merged 12 commits into
tari-project:development
from
sdbondi:dan-layer-state-store
Aug 4, 2022
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Simple state storage for component state that occurs after execution of a WASM contract
df58169
to
907787b
Compare
a31cb93
to
6c17960
Compare
e222ca7
to
1159ef1
Compare
stringhandler
previously approved these changes
Aug 3, 2022
* development: fix: wallet database encryption does not bind to field keys tari-project#4137 (tari-project#4340) fix: use SafePassword struct instead of String for passwords (tari-project#4320) feat(dan): template macro handles component state (tari-project#4380) fix(dht)!: add message padding for message decryption, to reduce message length leaks (fixes tari-project#4140) (tari-project#4362) fix(wallet): update seed words for output manager tests (tari-project#4379)
bb4744a
to
8a3bebc
Compare
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Description
Adds simple state storage interface for component state that occurs after execution of a WASM contract
Motivation and Context
Introduces a simple state storage API for atomic databases and implements it for RwLock, Sqlite and LMDB.
Each database was implemented to ensure that the trait provides a good abstraction over the atomic read-write capabilities of each database.
How Has This Been Tested?
Unit test for each implementation