From 136323e10f3cbb1feae4181d2957452ff03944f8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20Soko=C5=82owski?= Date: Tue, 24 Oct 2023 14:17:10 +0200 Subject: [PATCH] docker: drop removed --miner.threads flag usage MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Jakub SokoĊ‚owski --- defaults/main.yml | 1 - templates/docker-compose.yml.j2 | 1 - 2 files changed, 2 deletions(-) diff --git a/defaults/main.yml b/defaults/main.yml index 4cab33d..49b2009 100644 --- a/defaults/main.yml +++ b/defaults/main.yml @@ -87,7 +87,6 @@ geth_bootnodes: [] # Mining settings geth_miner_enabled: false -geth_miner_threads: '{{ ansible_processor_vcpus }}' geth_miner_account: '{{ geth_account_addr }}' # Whisper protocol diff --git a/templates/docker-compose.yml.j2 b/templates/docker-compose.yml.j2 index c21585b..1198473 100644 --- a/templates/docker-compose.yml.j2 +++ b/templates/docker-compose.yml.j2 @@ -50,7 +50,6 @@ services: {% endif %} {% if geth_miner_enabled %} --mine - --miner.threads="{{ geth_miner_threads }}" --miner.etherbase="{{ geth_miner_account | mandatory }}" {% endif %} {% if geth_whisper_enabled %}