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

[CI] Add consensus breaking warning #884

Draft
wants to merge 9 commits into
base: main
Choose a base branch
from
Draft
Changes from 1 commit
Commits
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
Prev Previous commit
Next Next commit
try runtime
  • Loading branch information
okdas committed Oct 17, 2024
commit fdab0c72b8386b7c4cb608c2f4668c91202e7428
5 changes: 3 additions & 2 deletions .github/workflows/consensuswarn.yml
Original file line number Diff line number Diff line change
@@ -14,7 +14,7 @@ jobs:
- uses: actions/checkout@v4
- uses: orijtech/consensuswarn@main
with:
# Available BaseApp roots: `go doc github.com/pokt-network/poktroll/app.App`
# Available BaseApp roots: `go doc github.com/cosmos/cosmos-sdk/baseapp.BaseApp`
#
# TODO_CONSIDER: CURRENTLY MAY BE TOO VERBOSE. Consider removing functions that cause excessive noise or false positives.
#
@@ -64,4 +64,5 @@ jobs:
# SimTxFinalizeBlock:
# Simulates a finalized block for testing and debugging purposes.
# Less critical, but could be monitored for changes that may affect testing and simulation behavior.
roots: github.com/pokt-network/poktroll/app.App.PrepareProposal,github.com/pokt-network/poktroll/app.App.ProcessProposal,github.com/pokt-network/poktroll/app.App.FinalizeBlock,github.com/pokt-network/poktroll/app.App.Commit,github.com/pokt-network/poktroll/app.App.VerifyVoteExtension,github.com/pokt-network/poktroll/app.App.ExtendVote,github.com/pokt-network/poktroll/app.App.CheckTx,github.com/pokt-network/poktroll/app.App.InitChain,github.com/pokt-network/poktroll/app.App.StoreConsensusParams,github.com/pokt-network/poktroll/app.App.SimDeliver,github.com/pokt-network/poktroll/app.App.SimTxFinalizeBlock
roots: github.com/cosmos/cosmos-sdk/runtime.App.BeginBlocker,github.com/cosmos/cosmos-sdk/runtime.App.EndBlocker,github.com/cosmos/cosmos-sdk/runtime.App.PreBlocker,github.com/cosmos/cosmos-sdk/runtime.App.Precommiter
# roots: github.com/cosmos/cosmos-sdk/baseapp.BaseApp.PrepareProposal,github.com/cosmos/cosmos-sdk/baseapp.BaseApp.ProcessProposal,github.com/cosmos/cosmos-sdk/baseapp.BaseApp.FinalizeBlock,github.com/cosmos/cosmos-sdk/baseapp.BaseApp.Commit,github.com/cosmos/cosmos-sdk/baseapp.BaseApp.VerifyVoteExtension,github.com/cosmos/cosmos-sdk/baseapp.BaseApp.ExtendVote,github.com/cosmos/cosmos-sdk/baseapp.BaseApp.CheckTx,github.com/cosmos/cosmos-sdk/baseapp.BaseApp.InitChain,github.com/cosmos/cosmos-sdk/baseapp.BaseApp.StoreConsensusParams,github.com/cosmos/cosmos-sdk/baseapp.BaseApp.SimDeliver,github.com/cosmos/cosmos-sdk/baseapp.BaseApp.SimTxFinalizeBlock
Loading