82c3265858
* Ensure jsonrpc threading settings are sane Starting with `jsonrpc` v14, the "server threads" setting is more important than before and the current default of 1 means the https server is effectively single-threaded. This PR proposes a new default of 4 (and ensures that crazy settings like e.g. `0` are bumped to at least `1`). Also included: some docs, tests and cosmetics. * Update parity/rpc.rs Co-Authored-By: Tomasz Drwięga <tomusdrw@users.noreply.github.com> * Update parity/rpc.rs Co-Authored-By: Tomasz Drwięga <tomusdrw@users.noreply.github.com> * Remove (i.e. deprecate) `--jsonrpc-threads` command line option * Call numbers NUM * Don't show a default for --jsonrpc-threads (deprecated) * Show deprecation warning when using `--jsonrpc-threads` or `processing_threads` * Update parity/deprecated.rs Co-Authored-By: Niklas Adolfsson <niklasadolfsson1@gmail.com> * Fix test * Fix tests for real
94 lines
1.5 KiB
TOML
94 lines
1.5 KiB
TOML
[parity]
|
|
mode = "dark"
|
|
mode_timeout = 15
|
|
mode_alarm = 10
|
|
chain = "./chain.json"
|
|
|
|
[account]
|
|
unlock = ["0x1", "0x2", "0x3"]
|
|
password = ["passwdfile path"]
|
|
|
|
[ui]
|
|
disable = true
|
|
|
|
[network]
|
|
warp = false
|
|
discovery = true
|
|
nat = "any"
|
|
min_peers = 10
|
|
max_peers = 20
|
|
max_pending_peers = 30
|
|
snapshot_peers = 40
|
|
allow_ips = "public"
|
|
|
|
reserved_only = true
|
|
reserved_peers = "./path/to/reserved_peers"
|
|
|
|
[websockets]
|
|
disable = true
|
|
origins = ["none"]
|
|
|
|
[rpc]
|
|
disable = true
|
|
port = 8180
|
|
server_threads = 13
|
|
|
|
[ipc]
|
|
apis = ["rpc", "eth"]
|
|
|
|
[dapps]
|
|
port = 8080
|
|
user = "username"
|
|
pass = "password"
|
|
|
|
[secretstore]
|
|
http_port = 8082
|
|
port = 8083
|
|
|
|
[ipfs]
|
|
enable = false
|
|
port = 5001
|
|
|
|
[mining]
|
|
author = "0xdeadbeefcafe0000000000000000000000000001"
|
|
engine_signer = "0xdeadbeefcafe0000000000000000000000000001"
|
|
force_sealing = true
|
|
reseal_on_txs = "all"
|
|
reseal_min_period = 4000
|
|
reseal_max_period = 60000
|
|
price_update_period = "hourly"
|
|
tx_queue_size = 8192
|
|
|
|
[footprint]
|
|
tracing = "on"
|
|
pruning = "fast"
|
|
pruning_history = 64
|
|
cache_size_db = 256
|
|
cache_size_blocks = 16
|
|
cache_size_queue = 100
|
|
cache_size_state = 25
|
|
db_compaction = "ssd"
|
|
fat_db = "off"
|
|
scale_verifiers = false
|
|
|
|
[light]
|
|
on_demand_response_time_window = 2
|
|
on_demand_request_backoff_start = 9
|
|
on_demand_request_backoff_max = 15
|
|
on_demand_request_backoff_rounds_max = 10
|
|
on_demand_request_consecutive_failures = 1
|
|
|
|
[snapshots]
|
|
disable_periodic = true
|
|
|
|
[misc]
|
|
logging = "own_tx=trace"
|
|
log_file = "/var/log/parity.log"
|
|
color = true
|
|
ports_shift = 0
|
|
unsafe_expose = false
|
|
|
|
[whisper]
|
|
enabled = true
|
|
pool_size = 50
|