We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
The witness_node program now can be used to serve the features that was served by delayed_node.
witness_node
delayed_node
To use witness_node as a delayed node, some options are required to be configured appropriately.
Start witness_node with command line option --seed-nodes="[]" and/or --p2p-endpoint=127.0.0.1:0, or configure the options in config.ini:
--seed-nodes="[]"
--p2p-endpoint=127.0.0.1:0
config.ini
p2p-endpoint = 127.0.0.1:0 seed-nodes = []
Start witness_node with --plugins="delayed_node [and other required plugins]", or configure it in config.ini:
--plugins="delayed_node [and other required plugins]"
plugins = delayed_node
Start witness_node with --trusted-node="ip.address.of.the.witness.node:rpc-port", or configure it in config.ini:
--trusted-node="ip.address.of.the.witness.node:rpc-port"
trusted-node = ip.address.of.the.witness.node:rpc-port
Assuming the RPC endpoint of the trusted node is 127.0.0.1:8090, we can have following options in config.ini of a delayed node.
127.0.0.1:8090
p2p-endpoint = 127.0.0.1:0 seed-nodes = [] plugins = delayed_node account_history api_helper_indexes trusted-node = 127.0.0.1:8090