Merge pull request #23 from joshuafernandes/lint-fixes

fixes for linting
pull/24/head 0.2.1
Joshua Fernandes 5 years ago committed by GitHub
commit a3594d9f9e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      tasks/compile.yml
  2. 5
      templates/config.toml.j2
  3. 2
      test/lint/.ansible-lint

@ -38,5 +38,3 @@
- name: Set Besu Version Fact - name: Set Besu Version Fact
set_fact: set_fact:
besu_version: "{{ besu_version_cmd.stdout }}" besu_version: "{{ besu_version_cmd.stdout }}"

@ -95,14 +95,9 @@ permissions-nodes-contract-address="{{ besu_permissions_nodes_contract_address }
{% endif %} {% endif %}
{% if besu_bootnodes|length > 0 %} {% if besu_bootnodes|length > 0 %}
{% if besu_bootnodes is string %}
# bootnodes
bootnodes={{besu_bootnodes}}
{% else %}
# bootnodes # bootnodes
bootnodes=[{{besu_bootnodes|map('to_json')|join(',')}}] bootnodes=[{{besu_bootnodes|map('to_json')|join(',')}}]
{% endif %} {% endif %}
{% endif %}
{% if besu_privacy_enabled|bool == True %} {% if besu_privacy_enabled|bool == True %}
# Orion # Orion

@ -4,4 +4,4 @@ use_default_rules: true
verbosity: true verbosity: true
skip_list: skip_list:
- '204' - '204'
- '602'

Loading…
Cancel
Save