Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix validator raw hash #326

Merged
merged 33 commits into from
Oct 13, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
a358511
[ci] improve e2e log upload to add validator logs
Aug 3, 2022
92d52d8
test/e2e: update assert_success/failure to first consume output
tzemanovic Jul 26, 2022
0bacc95
changelog: add #247
tzemanovic Aug 1, 2022
0dd32e6
deps: remove ABCI dependencies, use ABCI++ as default
tzemanovic Jul 27, 2022
f5b8ba9
all: remove "ABCI" conditional compilation
tzemanovic Jul 27, 2022
87f162f
make: remove "*-abci-plus-plus"
tzemanovic Jul 27, 2022
f4092ac
shell: process transaction when `ProcessProposal` hasn't (non-validator)
tzemanovic Jul 28, 2022
7c32a5f
test/e2e/ledger: enable ignored tests for ABCI++ workaround
tzemanovic Jul 28, 2022
c856157
scripts/get_tendermint: update for ABCI++ temp fork release
tzemanovic Jul 28, 2022
67eee8c
ledger: refactor tx_queue
tzemanovic Jul 29, 2022
43aa815
ledger: make prepare_proposal and process_proposal stateless
tzemanovic Jul 29, 2022
84ab544
ledger: debug log some ABCI++ requests
tzemanovic Jul 29, 2022
855d0db
[ci] wasm checksums update
github-actions[bot] Jul 29, 2022
818a36a
update the changelog config to namada repo
tzemanovic Aug 1, 2022
40e6348
Merge branch 'tomas/update-bin-names' (#246)
tzemanovic Aug 4, 2022
63e55d8
Merge branch 'tomas/update-changelog-config' (#248)
tzemanovic Aug 4, 2022
08521de
Merge branch 'tomas/e2e-fix-cmd-assert' (#247)
tzemanovic Aug 4, 2022
604e308
Merge branch 'tomas/remove-abci' (#224)
tzemanovic Aug 4, 2022
ae00c72
Merge branch 'fraccaman+tomas/ci-e2e-validator-logs' (#274)
tzemanovic Aug 4, 2022
8090d99
Merge branch 'tomas/expectrl-switch-from-fork' (#265)
tzemanovic Aug 4, 2022
80fa394
shell: remove TM consensus evidence parameters
tzemanovic Jul 25, 2022
cbcda14
shell: skip and log outdated evidence in the shell
tzemanovic Jul 25, 2022
80e9916
changelog: add #1248
tzemanovic Jul 25, 2022
77f2ead
tendermint: fix address written to TM to correspond to consensus key
tzemanovic Jul 21, 2022
79f2f83
PoS: fix the validator's raw hash to correspond to consensus key
tzemanovic Jul 21, 2022
3d7ab76
tests/PoS: fix the validator's raw hash to correspond to consensus key
tzemanovic Jul 21, 2022
3a5fae7
ledger/shell: fix validator look-up from tm raw hash
tzemanovic Jul 21, 2022
e4022b8
shell: fix slashing log msg
tzemanovic Jul 22, 2022
95f8d39
test/e2e: add test for double signing slashing
tzemanovic Jul 22, 2022
e3a92d1
client/utils: switch off validator's p2p addr strict mode in localhost
tzemanovic Jul 22, 2022
ead98a3
changelog: add #326
tzemanovic Aug 21, 2022
fb97e3c
pos: update validator raw hash validation
tzemanovic Aug 22, 2022
4b8d423
update wasm checksums
tzemanovic Aug 22, 2022
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
2 changes: 1 addition & 1 deletion .changelog/config.toml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
project_url = 'https://github.com/anoma/anoma'
project_url = 'https://github.com/anoma/namada'

# Settings related to components/sub-modules. Only relevant if you make use of
# components/sub-modules.
Expand Down
2 changes: 2 additions & 0 deletions .changelog/unreleased/bug-fixes/326-fix-validator-raw-hash.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
- Fixed validator raw hash corresponding to validator address in Tendermint
([#326](https://github.com/anoma/namada/pull/326))
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
- Replace Tendermint consensus evidence parameters with
application level evidence filter for outdated evidence.
([#1248](https://github.com/anoma/anoma/pull/1248))
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
- Switch back from a fork to a newly released version of expectrl
([#1142](https://github.com/anoma/anoma/pull/1142))
2 changes: 2 additions & 0 deletions .changelog/unreleased/testing/247-e2e-fix-cmd-assert.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
- E2E: Consume unread output before checking exit status.
([#247](https://github.com/anoma/namada/pull/247))
4 changes: 3 additions & 1 deletion .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,9 @@ jobs:
uses: actions/upload-artifact@v3
with:
name: logs-e2e${{ matrix.make.suffix }}-${{ github.sha }}
path: /tmp/.*/logs/
path: |
/tmp/.*/logs/
/tmp/.*/e2e-test.*/setup/validator-*/.anoma/logs/*.log
retention-days: 5
- name: Print sccache stats
if: always()
Expand Down
Loading