-
Notifications
You must be signed in to change notification settings - Fork 39
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: immutibility and contracts that allow document history (dashpay…
…/rs-platform#79) * added contract and document type fields for mutability and historical data * added in immutability * basic contract history * better test for import contract * added test for mutability for DashPay contact Requests * better updating of documents, and documents with keep history * added in tests verifying historical contracts * added test and fixed limit issue * fixed some warnings * various fixes and tests * formatting and clippy fixes * update to node bindings * fixed bindings * fixed linting * clippy warnings * clippy warnings * added more fixes * changed readonly to readOnly
- Loading branch information
1 parent
01550ea
commit 16a27c6
Showing
19 changed files
with
3,310 additions
and
199 deletions.
There are no files selected for viewing
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
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
pub const DEFAULT_CONTRACT_KEEPS_HISTORY: bool = false; | ||
pub const DEFAULT_CONTRACT_MUTABILITY: bool = true; | ||
pub const DEFAULT_CONTRACT_DOCUMENTS_KEEPS_HISTORY: bool = false; | ||
pub const DEFAULT_CONTRACT_DOCUMENT_MUTABILITY: bool = true; |
Oops, something went wrong.