Browse Source

Update stacks-node configuration option docs.

- add warning to `working_dir`
- add `satoshis_per_byte` and note about total transaction cost
- remove `burnchain_op_tx_fee`
feat/new-clarity-onboarding
Diwaker Gupta 4 years ago
parent
commit
5fdaa654ff
  1. 23
      src/pages/references/stacks-node-configuration.md

23
src/pages/references/stacks-node-configuration.md

@ -117,6 +117,7 @@ miner = true
#### working_dir (optional) #### working_dir (optional)
Absolute path to the directory which the stacks-node will use for storing various data. Absolute path to the directory which the stacks-node will use for storing various data.
Until [issue 1576](https://github.com/blockstack/stacks-blockchain/issues/1576) is resolved, this option is unsupported -- use at your own risk.
Example: Example:
@ -404,35 +405,27 @@ Example:
peer_port = 8333 peer_port = 8333
``` ```
#### process_exit_at_block_height (optional) #### burn_fee_cap (optional)
Block height of the burnchain at which the stacks-node will self-terminate. Used during the testnet phases for various testing cycles. Maximum amount (in Satoshis) of "burn commitment" to broadcast for the next block's leader election.
Example: Example:
```toml ```toml
process_exit_at_block_height = 5340 burn_fee_cap = 30000
``` ```
#### burnchain_op_tx_fee (optional) #### satoshis_per_byte (optional)
Transaction fee per burnchain operation. Amount (in Satoshis) per [virtual byte](https://en.bitcoin.it/wiki/Weight_units). This is used to compute the transaction fees.
Example: Example:
```toml ```toml
burnchain_op_tx_fee = 5500 satoshis_per_byte = 50
``` ```
#### burn_fee_cap (optional) So total transaction cost would be `(estimated_tx_size * satoshis_per_byte) + burn_fee_cap`.
Max burn fee for a transaction.
Example:
```toml
burn_fee_cap = 30000
```
#### commit_anchor_block_within (optional) #### commit_anchor_block_within (optional)

Loading…
Cancel
Save