Skip to content

Commit 1ac26d5

Browse files
author
Bulat Saifullin
authored
[state_exporter] update session key format (#94)
* [state_exporter] update session key format * fix ci
1 parent 47a1c88 commit 1ac26d5

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

.github/workflows/reusable-molecule.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
run: |
4949
set -e
5050
yamllint .
51-
ansible-lint
51+
ansible-lint --exclude .ansible/collections
5252
working-directory: "${{ github.repository }}/roles/${{ inputs.role-name }}"
5353
- name: Run molecule tests
5454
if: ${{ env.MOLECULE_IS_PRESENT }}

galaxy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ namespace: paritytech
88
name: chain
99

1010
# The version of the collection. Must be compatible with semantic versioning
11-
version: 1.10.9
11+
version: 1.10.10
1212

1313
# The path to the Markdown (.md) readme file. This path is relative to the root of the collection
1414
readme: README.md

roles/state_exporter/files/exporter.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -125,6 +125,7 @@ def parse_session_key(dir):
125125
['6772616e', '62616265', '696d6f6e', '70617261', '61756469'], # v1 validator keys (gran,babe,imon,para,audi)
126126
['6772616e', '62616265', '696d6f6e', '70617261', '6173676e', '61756469'], # v2 validator keys (gran,babe,imon,para,asgn,audi)
127127
['6772616e', '62616265', '696d6f6e', '70617261', '6173676e', '61756469', '62656566'], # v3 validator keys (gran,babe,imon,para,asgn,audi,beef)
128+
['6772616e', '62616265', '70617261', '6173676e', '61756469', '62656566'], # v4 validator keys (gran,babe,para,asgn,audi,beef)
128129
['61757261'] # collator keys (aura)
129130
)
130131
possible_prefixes = list(set([j for i in key_formats for j in i]))

0 commit comments

Comments
 (0)