diff --git a/docs/01_nodeos/02_usage/01_nodeos-configuration.md b/docs/01_nodeos/02_usage/01_nodeos-configuration.md index 1ab5db8933..4db966a433 100644 --- a/docs/01_nodeos/02_usage/01_nodeos-configuration.md +++ b/docs/01_nodeos/02_usage/01_nodeos-configuration.md @@ -29,7 +29,6 @@ nodeos \ --plugin eosio::http_plugin \ --plugin eosio::state_history_plugin \ --contracts-console \ - --disable-replay-opts \ --access-control-allow-origin='*' \ --http-validate-host=false \ --verbose-http-errors \ @@ -46,7 +45,7 @@ The above `nodeos` command starts a producing node by: * setting the blockchain data directory (`--data-dir`) * setting the `config.ini` directory (`--config-dir`) * loading plugins `producer_plugin`, `chain_plugin`, `http_plugin`, `state_history_plugin` (`--plugin`) -* passing `chain_plugin` options (`--contracts-console`, `--disable-replay-opts`) +* passing `chain_plugin` options (`--contracts-console`) * passing `http-plugin` options (`--access-control-allow-origin`, `--http-validate-host`, `--verbose-http-errors`) * passing `state_history` options (`--state-history-dir`, `--trace-history`, `--chain-state-history`) * redirecting both `stdout` and `stderr` to the `nodeos.log` file diff --git a/docs/01_nodeos/03_plugins/state_history_plugin/index.md b/docs/01_nodeos/03_plugins/state_history_plugin/index.md index 6538a5b79e..ea75cbf104 100644 --- a/docs/01_nodeos/03_plugins/state_history_plugin/index.md +++ b/docs/01_nodeos/03_plugins/state_history_plugin/index.md @@ -51,23 +51,6 @@ Config Options for eosio::state_history_plugin: number of most recent blocks ``` -## Examples - -## Dependencies - -* [`chain_plugin`](../chain_plugin/index.md) - -### Load Dependency Examples - -```console -# config.ini -plugin = eosio::chain_plugin --disable-replay-opts -``` -```sh -# command-line -nodeos ... --plugin eosio::chain_plugin --disable-replay-opts -``` - ## How-To Guides * [How to fast start without history on existing chains](10_how-to-fast-start-without-old-history.md)