Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
118d964
implemented new switch reporter logic that lets you switch reporters …
CJPotter10 May 14, 2026
2af43da
added a bunch of tests after making changes to the dispute modules. D…
CJPotter10 May 19, 2026
aefdaf0
added more tests and fixed/improved some other tests
CJPotter10 May 20, 2026
d54f825
added adr for new switch mechanics
CJPotter10 May 20, 2026
29b24e4
made lint fixes
CJPotter10 May 20, 2026
e794652
another lint fix
CJPotter10 May 20, 2026
9dfce85
updated protoc-gen-go package to match original gnerated files
CJPotter10 May 20, 2026
33142ba
removed old unused code from upgrades.go
CJPotter10 May 20, 2026
194ae5c
changed how warning disputes are processed to simplify things and rem…
CJPotter10 May 20, 2026
ea3920f
updated tests with new logic
CJPotter10 May 21, 2026
1ff0159
added back check to block disputing jailed reporters. Added feature t…
CJPotter10 May 26, 2026
4fefff1
made some lint fixes
CJPotter10 May 26, 2026
d3cd74c
fixed a couple of the tests
CJPotter10 May 27, 2026
39a4c48
fixed some more tests and updated the upgrade name to v6.1.6 instead …
CJPotter10 May 27, 2026
4e600b4
pushing up a file that was missed in the last commit
CJPotter10 May 27, 2026
8e3244e
Merge branch 'main' into feat/immediate-switch-reporter
CJPotter10 May 27, 2026
e6a2d72
made lint fixes
CJPotter10 May 27, 2026
7e71113
fixed build issues
CJPotter10 May 27, 2026
9bd5d50
fixed duplicated error code
CJPotter10 May 27, 2026
9bf4445
fixed e2e issue that came from a variable being deleted when dealing …
CJPotter10 May 27, 2026
0bf400e
fixed test issue that could result in the tip amount being less than …
CJPotter10 May 27, 2026
3b85024
fixed the last tests
CJPotter10 May 27, 2026
eded086
reset consensus version on reporter back to 1
CJPotter10 May 28, 2026
201ece4
Merge branch 'main' into feat/immediate-switch-reporter
CJPotter10 May 28, 2026
a6ab79b
updated adr
CJPotter10 May 29, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 10 additions & 3 deletions .github/workflows/e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -102,8 +102,15 @@ jobs:
- name: Generate Matrix
id: set-matrix
run: |
TESTS=$(cd e2e && go test -list . | grep -v "^ok " | jq -R -s -c 'split("\n")[:-1]')
echo "matrix=${TESTS}" >> $GITHUB_OUTPUT
set -euo pipefail
OUT="$(mktemp)"
(
cd e2e
# -list also prints package status lines (ok/FAIL). We only want test names.
go test -list '^Test' . | tee "${OUT}" >/dev/null
)
TESTS="$(grep '^Test' "${OUT}" | jq -R -s -c 'split("\n")[:-1]')"
echo "matrix=${TESTS}" >> "${GITHUB_OUTPUT}"

# Test job (depends on prepare, which in turn depends on both build jobs)
test:
Expand Down Expand Up @@ -141,4 +148,4 @@ jobs:
run: docker image load -i ${{ env.IBC_TAR_PATH }}

- name: Run Tests
run: cd e2e && go test -race -v -timeout 15m -run ^${{ matrix.test }}$ .
run: cd e2e && go test -race -v -timeout 15m -run "^${{ matrix.test }}$" .
358 changes: 358 additions & 0 deletions adr/adr1010 - deferred reporter switch and dispute jail hardening.md

Large diffs are not rendered by default.

124 changes: 93 additions & 31 deletions api/layer/reporter/params.pulsar.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading
Loading