upgrade from 1.10.26 to 1.11.1

https://github.com/ethereum/go-ethereum/releases/tag/v1.11.1

Signed-off-by: Jakub Sokołowski <jakub@status.im>
This commit is contained in:
Jakub Sokołowski 2023-02-21 12:39:13 +01:00
parent 210156c5de
commit 432a93f725
No known key found for this signature in database
GPG Key ID: FE65CD384D5BF7B4
2 changed files with 5 additions and 4 deletions

View File

@ -14,7 +14,7 @@ geth_account_pass_file: '{{ geth_cont_vol }}/keys/account.pass'
geth_account_addr_file: '{{ geth_cont_vol }}/keys/account.addr'
# Container config
geth_cont_tag: 'v1.10.26'
geth_cont_tag: 'v1.11.1'
geth_cont_image: 'ethereum/client-go:{{ geth_cont_tag }}'
geth_cont_name: '{{ geth_service_name }}-node'
geth_cont_vol: '{{ geth_service_path }}/node'

View File

@ -3,15 +3,16 @@
wait_for:
host: 'localhost'
port: '{{ geth_rpc_port }}'
delay: 5
connect_timeout: 10
delay: 20
connect_timeout: 20
timeout: 120
state: drained
- name: Geth | Get enode address
uri:
url: http://{{ geth_rpc_addr }}:{{ geth_rpc_port }}/
method: POST
body: '{"id": 1, "method": "admin_nodeInfo"}'
body: '{"id": 1, "jsonrpc": "2.0", "method": "admin_nodeInfo"}'
body_format: json
return_content: yes
register: node_info