Browse Source
Update stacks-node-configuration.md
friedger-patch-2
Friedger Müffke
4 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
26 additions and
0 deletions
-
src/pages/references/stacks-node-configuration.md
|
|
@ -223,6 +223,12 @@ Example: |
|
|
|
mine_microblocks = true |
|
|
|
``` |
|
|
|
|
|
|
|
#### microblock_frequency (optional) |
|
|
|
|
|
|
|
#### max_microblocks (optional) |
|
|
|
|
|
|
|
#### pox_sync_sample_secs (optional) |
|
|
|
|
|
|
|
#### prometheus_bind (optional) |
|
|
|
|
|
|
|
Address and port stacks-node should open for Prometheus metrics collection. |
|
|
@ -233,6 +239,26 @@ Example: |
|
|
|
prometheus_bind = "0.0.0.0:9153" |
|
|
|
``` |
|
|
|
|
|
|
|
#### deny_nodes (optional) |
|
|
|
|
|
|
|
List of nodes that must not be added to neighbors |
|
|
|
|
|
|
|
Example: |
|
|
|
|
|
|
|
```toml |
|
|
|
deny_nodes = ??? |
|
|
|
``` |
|
|
|
|
|
|
|
#### use_test_genesis_chainstate (optional) |
|
|
|
Boolean flag to indicate to use a small genesis block, e.g for testing purposes or on mocknet |
|
|
|
|
|
|
|
Example: |
|
|
|
|
|
|
|
```toml |
|
|
|
use_test_genesis_chainstate = true |
|
|
|
``` |
|
|
|
|
|
|
|
|
|
|
|
### Section: events_observer (optional) |
|
|
|
|
|
|
|
Contains options for watching events emitted by a local [stacks-blockchain-api](https://github.com/blockstack/stacks-blockchain-api) service. |
|
|
|