Skip to content
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

docs: Fixing Documentation Typos #308

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/onebox-test.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ The blockchain node binaries will be compiled or downloaded from github to `test

## Run Tests

Changes to the `tests` folder and run the following command to run all tests:
Change to the `tests` folder and run the following command to run all tests:

```
python test_all.py
Expand Down
2 changes: 1 addition & 1 deletion docs/run.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

### Setup Environment

Install dependencies Node.js, yarn, hardhat.
Install the dependencies Node.js, yarn, hardhat.

- Linux

Expand Down
2 changes: 1 addition & 1 deletion docs/transaction-processing.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@ When an application server with the key-value runtime encounters the commit reco

## Concurrent Assumption

This transaction model assumes that the transaction participants are collaborative and will honestly compose the commit record with the correct content. Although this assumption in a decentralized environment is too strong, it is still achievable for specific applications. For example, for an application like Google Docs, a user normally shares the access to others who can be trusted. In case this assumption cannot hold, the code of the transaction can be stored in the ZeroGravity log and some mechanism of verifiable computation like zero-knowledge proof or hardware with trust execution environment (TEE) can be employed by the transaction executors to detect the validity of the commit record.
This transaction model assumes that the transaction participants are collaborative and will honestly compose the commit record with the correct content. Although this assumption in a decentralized environment is too strong, it is still achievable for specific applications. For example, for an application like Google Docs, a user normally shares the access to others who can be trusted. In case this assumption cannot hold, the code of the transaction can be stored in the ZeroGravity log and some mechanism of verifiable computation like zero-knowledge proof or hardware with trusted execution environment (TEE) can be employed by the transaction executors to detect the validity of the commit record.
Loading