docker: drop removed --miner.threads flag usage
Signed-off-by: Jakub Sokołowski <jakub@status.im>
This commit is contained in:
parent
e38af5b3ad
commit
136323e10f
|
@ -87,7 +87,6 @@ geth_bootnodes: []
|
||||||
|
|
||||||
# Mining settings
|
# Mining settings
|
||||||
geth_miner_enabled: false
|
geth_miner_enabled: false
|
||||||
geth_miner_threads: '{{ ansible_processor_vcpus }}'
|
|
||||||
geth_miner_account: '{{ geth_account_addr }}'
|
geth_miner_account: '{{ geth_account_addr }}'
|
||||||
|
|
||||||
# Whisper protocol
|
# Whisper protocol
|
||||||
|
|
|
@ -50,7 +50,6 @@ services:
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% if geth_miner_enabled %}
|
{% if geth_miner_enabled %}
|
||||||
--mine
|
--mine
|
||||||
--miner.threads="{{ geth_miner_threads }}"
|
|
||||||
--miner.etherbase="{{ geth_miner_account | mandatory }}"
|
--miner.etherbase="{{ geth_miner_account | mandatory }}"
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% if geth_whisper_enabled %}
|
{% if geth_whisper_enabled %}
|
||||||
|
|
Loading…
Reference in New Issue