-
Notifications
You must be signed in to change notification settings - Fork 1.6k
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
doc: add instructions for starting fullnode with pbss #1977
Conversation
README.md
Outdated
@@ -157,6 +157,9 @@ So just run: `geth --datadir <datadir> init ./genesis.json` | |||
|
|||
## It is recommand to run fullnode with `--tries-verify-mode none` if you want high performance and care little about state consistency | |||
./geth --config ./config.toml --datadir ./node --cache 8000 --rpc.allow-unprotected-txs --txlookuplimit 0 --tries-verify-mode none | |||
|
|||
## run fullnode with Path-Base Storage Schema. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
## run fullnode with Path-Base Storage Schema. | |
## run fullnode with Path-Base Storage Schema | |
## It will enable inline state prune, keeping the latest 90000 blocks' history state by default. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
changed
README.md
Outdated
@@ -157,6 +157,9 @@ So just run: `geth --datadir <datadir> init ./genesis.json` | |||
|
|||
## It is recommand to run fullnode with `--tries-verify-mode none` if you want high performance and care little about state consistency | |||
./geth --config ./config.toml --datadir ./node --cache 8000 --rpc.allow-unprotected-txs --txlookuplimit 0 --tries-verify-mode none | |||
|
|||
## run fullnode with Path-Base Storage Schema. | |||
./geth --config ./config.toml --datadir ./node --cache 8000 --rpc.allow-unprotected-txs --txlookuplimit 0 --tries-verify-mode none --schema path |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should be "state.schem path"?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
fixed
ecfc3e4
to
626eb31
Compare
README.md
Outdated
geth --datadir <datadir> init ./genesis.json | ||
|
||
## It will init genesis with Path-Base Storage Schema. | ||
geth --datadir <datadir> --state.schema path init ./genesis.json |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
geth --datadir <datadir> --state.schema path init ./genesis.json | |
geth --datadir <datadir> --state.scheme path init ./genesis.json |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
fixed
README.md
Outdated
|
||
## It will run fullnode with Path-Base Storage Schema. | ||
## It will enable inline state prune, keeping the latest 90000 blocks' history state by default. | ||
./geth --config ./config.toml --datadir ./node --cache 8000 --rpc.allow-unprotected-txs --txlookuplimit 0 --tries-verify-mode none --state.schema path |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
"--state.scheme path"
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
fixed
626eb31
to
63824a8
Compare
Description
Add instructions for starting fullnode with pbss in README.
Rationale
N/A
Example
N/A
Changes
Notable changes:
N/A