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

feat(app): replace staking with dogfood #42

Merged
merged 27 commits into from
Apr 29, 2024
Merged
Show file tree
Hide file tree
Changes from 7 commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
ce3dc21
feat(app): replace staking with dogfood
MaxMustermann2 Apr 23, 2024
261b9f7
chore(lint): golang lint
MaxMustermann2 Apr 23, 2024
76cb3d6
fix: remove staking module from export genesis
MaxMustermann2 Apr 23, 2024
3081d7c
fix(ante): remove vesting
MaxMustermann2 Apr 23, 2024
3e4b659
fix(app): add back hooks and precompiles
MaxMustermann2 Apr 23, 2024
e0097ab
refactor(dogfood): remove slash keeper
MaxMustermann2 Apr 23, 2024
af27899
fix(app): remove nil panics by reordering
MaxMustermann2 Apr 23, 2024
c534fa4
feat(cmd): add cons key to bytes cli
MaxMustermann2 Apr 23, 2024
e30b0ed
fix(evm): remove staking keeper
MaxMustermann2 Apr 23, 2024
3153d30
remove unused modules initialization
MaxMustermann2 Apr 23, 2024
e421a06
fix(operator): initialize before unmarshal
MaxMustermann2 Apr 23, 2024
295b4d0
test: fix tests for dogfood
MaxMustermann2 Apr 23, 2024
9211c0d
chore(lint): gofumpt the file
MaxMustermann2 Apr 23, 2024
d304ecd
chore(lint): remove unused function param
MaxMustermann2 Apr 23, 2024
2e2cee7
fix(dogfood): remove reflect imports
MaxMustermann2 Apr 23, 2024
62c1d3b
fix(app): remove function with wrong signature
MaxMustermann2 Apr 23, 2024
7a67bcb
chore(lint): propagate error up the stack
MaxMustermann2 Apr 23, 2024
315e059
fix(operator): validate commission at genesis
MaxMustermann2 Apr 23, 2024
602abe1
test(operator): check for nil values
MaxMustermann2 Apr 23, 2024
2dc8148
Merge branch 'develop' into feat/app-dogfood
MaxMustermann2 Apr 25, 2024
3068bcf
refactor(dogfood): expected oracle interface
MaxMustermann2 Apr 25, 2024
c8e528c
chore(lint): golangci-lint
MaxMustermann2 Apr 25, 2024
6070a26
fix(dogfood): correct the val update calc
MaxMustermann2 Apr 26, 2024
2701f78
refactor: remove staking state or keeper
MaxMustermann2 Apr 29, 2024
070d9bd
fix(cmd): allow init of dogfood localnet
MaxMustermann2 Apr 29, 2024
e3e0546
fix(dogfood): make compatible with oracle
MaxMustermann2 Apr 29, 2024
e85d955
chore(lint): remove unused params
MaxMustermann2 Apr 29, 2024
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 app/ante/cosmos/fees.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@ import (
"math"

errorsmod "cosmossdk.io/errors"
anteutils "github.com/ExocoreNetwork/exocore/app/ante/utils"
sdk "github.com/cosmos/cosmos-sdk/types"
errortypes "github.com/cosmos/cosmos-sdk/types/errors"
authante "github.com/cosmos/cosmos-sdk/x/auth/ante"
authtypes "github.com/cosmos/cosmos-sdk/x/auth/types"
anteutils "github.com/evmos/evmos/v14/app/ante/utils"
)

// DeductFeeDecorator deducts fees from the first signer of the tx.
Expand Down
121 changes: 0 additions & 121 deletions app/ante/cosmos/vesting.go

This file was deleted.

2 changes: 1 addition & 1 deletion app/ante/evm/fee_checker.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ import (
errorsmod "cosmossdk.io/errors"
sdkmath "cosmossdk.io/math"

anteutils "github.com/ExocoreNetwork/exocore/app/ante/utils"
sdk "github.com/cosmos/cosmos-sdk/types"
errortypes "github.com/cosmos/cosmos-sdk/types/errors"
authante "github.com/cosmos/cosmos-sdk/x/auth/ante"
anteutils "github.com/evmos/evmos/v14/app/ante/utils"
evmostypes "github.com/evmos/evmos/v14/types"
"github.com/evmos/evmos/v14/x/evm/types"
)
Expand Down
143 changes: 0 additions & 143 deletions app/ante/evm/vesting.go

This file was deleted.

Loading
Loading