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!: remove x/fees module #1135

Merged
merged 3 commits into from
May 10, 2023
Merged

feat!: remove x/fees module #1135

merged 3 commits into from
May 10, 2023

Conversation

dadamu
Copy link
Contributor

@dadamu dadamu commented May 10, 2023

Description

This PR removes the x/fees since it would conflict with the new feature of per-subspace fee tokens presented inside ADR-021.

Depends-On: #1137


Author Checklist

All items are required. Please add a note to the item if the item is not applicable and
please add links to any relevant follow up issues.

I have...

  • included the correct type prefix in the PR title
  • added ! to the type prefix if API or client breaking change
  • targeted the correct branch (see PR Targeting)
  • provided a link to the relevant issue or specification
  • followed the guidelines for building modules
  • included the necessary unit and integration tests
  • added a changelog entry to CHANGELOG.md
  • included comments for documenting Go code
  • updated the relevant documentation or specification
  • reviewed "Files changed" and left comments if necessary
  • confirmed all CI checks have passed

Reviewers Checklist

All items are required. Please add a note if the item is not applicable and please add
your handle next to the items reviewed if you only reviewed selected items.

I have...

  • confirmed the correct type prefix in the PR title
  • confirmed ! in the type prefix if API or client breaking change
  • confirmed all author checklist items have been addressed
  • reviewed state machine logic
  • reviewed API design and naming
  • reviewed documentation is accurate
  • reviewed tests and test coverage
  • manually tested (if applicable)

@github-actions github-actions bot added x/CLI x/fees x/profiles Module that allows to create and manage decentralized social profiles x/relationships x/subspaces Issue on the x/subspaces module labels May 10, 2023
@codecov
Copy link

codecov bot commented May 10, 2023

Codecov Report

Patch coverage: 77.77% and project coverage change: -0.27 ⚠️

Comparison is base (7b7da5f) 80.93% compared to head (b9f8f1c) 80.66%.

❗ Current head b9f8f1c differs from pull request most recent head f65ddaf. Consider uploading reports for the commit f65ddaf to get more accurate results

Additional details and impacted files
@@            Coverage Diff             @@
##           master    #1135      +/-   ##
==========================================
- Coverage   80.93%   80.66%   -0.27%     
==========================================
  Files         198      188      -10     
  Lines       16966    16808     -158     
==========================================
- Hits        13731    13558     -173     
- Misses       2638     2655      +17     
+ Partials      597      595       -2     
Impacted Files Coverage Δ
app/ante.go 53.84% <ø> (-1.16%) ⬇️
x/posts/module.go 10.00% <0.00%> (+0.12%) ⬆️
x/profiles/module.go 9.75% <0.00%> (+0.11%) ⬆️
app/app.go 87.45% <100.00%> (-0.15%) ⬇️

... and 1 file with indirect coverage changes

☔ View full report in Codecov by Sentry.
📢 Do you have feedback about the report comment? Let us know in this issue.

@github-actions github-actions bot added the kind/ci Improve the CI/CD label May 10, 2023
@dadamu dadamu force-pushed the paul/drop-fees-module branch 2 times, most recently from e725eb6 to b9f8f1c Compare May 10, 2023 13:42
@dadamu dadamu force-pushed the paul/drop-fees-module branch from 89d9059 to ed34bb2 Compare May 10, 2023 14:52
@dadamu dadamu marked this pull request as ready for review May 10, 2023 14:52
@dadamu dadamu requested a review from a team as a code owner May 10, 2023 14:52
@RiccardoM RiccardoM changed the title feat!: drop x/fees feat!: remove x/fees module May 10, 2023
@RiccardoM RiccardoM merged commit 4ae49c0 into master May 10, 2023
@RiccardoM RiccardoM deleted the paul/drop-fees-module branch May 10, 2023 15:32
RiccardoM added a commit that referenced this pull request Jun 15, 2023
## Description

This PR implements ADR-21: Subspace specific custom fee tokens feature.

Closes: [DCD-312](https://desmoslabs.atlassian.net/browse/DCD-312)

~~Depends-On: #1135~~
~~Depends-On: #1139~~

<!-- Add a description of the changes that this PR introduces and the
files that
are the most critical to review. -->

---

### Author Checklist

*All items are required. Please add a note to the item if the item is
not applicable and
please add links to any relevant follow up issues.*

I have...

- [x] included the correct [type
prefix](https://github.com/commitizen/conventional-commit-types/blob/v3.0.0/index.json)
in the PR title
- [ ] added `!` to the type prefix if API or client breaking change
- [x] targeted the correct branch (see [PR
Targeting](https://github.com/desmos-labs/desmos/blob/master/CONTRIBUTING.md#pr-targeting))
- [ ] provided a link to the relevant issue or specification
- [ ] followed the guidelines for [building
modules](https://docs.cosmos.network/v0.44/building-modules/intro.html)
- [x] included the necessary unit and integration
[tests](https://github.com/desmos-labs/desmos/blob/master/CONTRIBUTING.md#testing)
- [ ] added a changelog entry to `CHANGELOG.md`
- [ ] included comments for [documenting Go
code](https://blog.golang.org/godoc)
- [ ] updated the relevant documentation or specification
- [x] reviewed "Files changed" and left comments if necessary
- [ ] confirmed all CI checks have passed

### Reviewers Checklist

*All items are required. Please add a note if the item is not applicable
and please add
your handle next to the items reviewed if you only reviewed selected
items.*

I have...

- [ ] confirmed the correct [type
prefix](https://github.com/commitizen/conventional-commit-types/blob/v3.0.0/index.json)
in the PR title
- [ ] confirmed `!` in the type prefix if API or client breaking change
- [ ] confirmed all author checklist items have been addressed
- [ ] reviewed state machine logic
- [ ] reviewed API design and naming
- [ ] reviewed documentation is accurate
- [ ] reviewed tests and test coverage
- [ ] manually tested (if applicable)

[DCD-312]:
https://forbole.atlassian.net/browse/DCD-312?atlOrigin=eyJpIjoiNWRkNTljNzYxNjVmNDY3MDlhMDU5Y2ZhYzA5YTRkZjUiLCJwIjoiZ2l0aHViLWNvbS1KU1cifQ

---------

Co-authored-by: dadamu <dadamu@users.noreply.github.com>
Co-authored-by: Riccardo <riccardo.montagnin@gmail.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
kind/ci Improve the CI/CD x/CLI x/fees x/profiles Module that allows to create and manage decentralized social profiles x/relationships x/subspaces Issue on the x/subspaces module
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants