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: whitelisted txfees receiving module addresses #8847

Closed
wants to merge 3 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
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
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
* [#8393](https://github.com/osmosis-labs/osmosis/pull/8393) Enable optimistic execution
* [#8831](https://github.com/osmosis-labs/osmosis/pull/8831) chore: bump cometbft

### State Breaking
* [8847](https://github.com/osmosis-labs/osmosis/pull/8847) fix: whitelisted txfees receiving module addresses

## v27.0.0

### State Breaking
Expand Down
4 changes: 3 additions & 1 deletion app/app.go
Original file line number Diff line number Diff line change
Expand Up @@ -161,6 +161,7 @@ import (
poolmanagerclient "github.com/osmosis-labs/osmosis/v27/x/poolmanager/client"
superfluidclient "github.com/osmosis-labs/osmosis/v27/x/superfluid/client"
txfeesclient "github.com/osmosis-labs/osmosis/v27/x/txfees/client"
txfeestypes "github.com/osmosis-labs/osmosis/v27/x/txfees/types"
)

const appName = "OsmosisApp"
Expand All @@ -173,7 +174,8 @@ var (
maccPerms = moduleAccountPermissions

// module accounts that are allowed to receive tokens.
allowedReceivingModAcc = map[string]bool{protorevtypes.ModuleName: true}
// NonNativeTxFeeCollectorName, TakerFeeCommunityPoolName, TakerFeeStakersName are added to unblock the txfees module at epoch
allowedReceivingModAcc = map[string]bool{protorevtypes.ModuleName: true, txfeestypes.NonNativeTxFeeCollectorName: true, txfeestypes.TakerFeeCommunityPoolName: true, txfeestypes.TakerFeeStakersName: true}

// TODO: Refactor wasm items into a wasm.go file
// WasmProposalsEnabled enables all x/wasm proposals when it's value is "true"
Expand Down
Loading