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: Update query.go to include pagination for bank q totals #11355

Merged
merged 10 commits into from
Mar 15, 2022

Conversation

okwme
Copy link
Contributor

@okwme okwme commented Mar 10, 2022

Description

Closes: #11354


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)

@okwme okwme changed the title Update query.go to include pagination for bank q totals Bug Fixes: Update query.go to include pagination for bank q totals Mar 10, 2022
Co-authored-by: Aleksandr Bezobchuk <alexanderbez@users.noreply.github.com>
@atheeshp atheeshp changed the title Bug Fixes: Update query.go to include pagination for bank q totals fix: Update query.go to include pagination for bank q totals Mar 11, 2022
@tac0turtle tac0turtle added the A:automerge Automatically merge PR once all prerequisites pass. label Mar 11, 2022
@tac0turtle
Copy link
Member

@okwme could you fix the failing test. It seems to come from changes in this PR.

@okwme
Copy link
Contributor Author

okwme commented Mar 11, 2022

@marbar3778 it looks like it's from:

  [2022-03-11 12:36:20] [build-stderr] /home/runner/work/cosmos-sdk/cosmos-sdk/go.mod:158: unknown directive: retract

I saw this error when using retract in go.mod and the runner action was using v1.15 of golang. I had to update it to v1.17 t get it to pass. This PR does not contain any changes to go.mod

@tac0turtle
Copy link
Member

--- FAIL: TestIntegrationTestSuite (16.20s)
[186](https://github.com/cosmos/cosmos-sdk/runs/5510922120?check_suite_focus=true#step:6:186)
    suite.go:32: setting up integration test suite
[187](https://github.com/cosmos/cosmos-sdk/runs/5510922120?check_suite_focus=true#step:6:187)
    network.go:203: acquiring test network lock
[188](https://github.com/cosmos/cosmos-sdk/runs/5510922120?check_suite_focus=true#step:6:188)
    network.go:213: preparing test network with chain-id "chain-7QLSUc"
[189](https://github.com/cosmos/cosmos-sdk/runs/5510922120?check_suite_focus=true#step:6:189)
    network.go:484: starting test network...
[190](https://github.com/cosmos/cosmos-sdk/runs/5510922120?check_suite_focus=true#step:6:190)
    network.go:490: started validator 0
[191](https://github.com/cosmos/cosmos-sdk/runs/5510922120?check_suite_focus=true#step:6:191)
    network.go:498: started test network at height: 7
[192](https://github.com/cosmos/cosmos-sdk/runs/5510922120?check_suite_focus=true#step:6:192)
    --- FAIL: TestIntegrationTestSuite/TestGetCmdQueryTotalSupply (0.00s)
[193](https://github.com/cosmos/cosmos-sdk/runs/5510922120?check_suite_focus=true#step:6:193)
        --- FAIL: TestIntegrationTestSuite/TestGetCmdQueryTotalSupply/total_supply (0.00s)
[194](https://github.com/cosmos/cosmos-sdk/runs/5510922120?check_suite_focus=true#step:6:194)
            suite.go:232: 
[195](https://github.com/cosmos/cosmos-sdk/runs/5510922120?check_suite_focus=true#step:6:195)
                	Error Trace:	suite.go:232
[196](https://github.com/cosmos/cosmos-sdk/runs/5510922120?check_suite_focus=true#step:6:196)
                	            				suite.go:77
[197](https://github.com/cosmos/cosmos-sdk/runs/5510922120?check_suite_focus=true#step:6:197)
                	Error:      	Not equal: 
[198](https://github.com/cosmos/cosmos-sdk/runs/5510922120?check_suite_focus=true#step:6:198)
                	            	expected: &types.QueryTotalSupplyResponse{Supply:types.Coins{types.Coin{Denom:"node0token", Amount:types.Int{i:(*big.Int)(0xc000258340)}}, types.Coin{Denom:"stake", Amount:types.Int{i:(*big.Int)(0xc00240baa0)}}}, Pagination:(*query.PageResponse)(0xc00240bae0)}
[199](https://github.com/cosmos/cosmos-sdk/runs/5510922120?check_suite_focus=true#step:6:199)
                	            	actual  : &types.QueryTotalSupplyResponse{Supply:types.Coins{types.Coin{Denom:"node0token", Amount:types.Int{i:(*big.Int)(0xc002464580)}}, types.Coin{Denom:"stake", Amount:types.Int{i:(*big.Int)(0xc0024645a0)}}}, Pagination:(*query.PageResponse)(0xc0024645c0)}
[200](https://github.com/cosmos/cosmos-sdk/runs/5510922120?check_suite_focus=true#step:6:200)
                	            	
[201](https://github.com/cosmos/cosmos-sdk/runs/5510922120?check_suite_focus=true#step:6:201)
                	            	Diff:
[202](https://github.com/cosmos/cosmos-sdk/runs/5510922120?check_suite_focus=true#step:6:202)
                	            	--- Expected
[203](https://github.com/cosmos/cosmos-sdk/runs/5510922120?check_suite_focus=true#step:6:203)
                	            	+++ Actual
[204](https://github.com/cosmos/cosmos-sdk/runs/5510922120?check_suite_focus=true#step:6:204)
                	            	@@ -27,3 +27,3 @@
[205](https://github.com/cosmos/cosmos-sdk/runs/5510922120?check_suite_focus=true#step:6:205)
                	            	   NextKey: ([]uint8) <nil>,
[206](https://github.com/cosmos/cosmos-sdk/runs/5510922120?check_suite_focus=true#step:6:206)
                	            	-  Total: (uint64) 2
[207](https://github.com/cosmos/cosmos-sdk/runs/5510922120?check_suite_focus=true#step:6:207)
                	            	+  Total: (uint64) 0
[208](https://github.com/cosmos/cosmos-sdk/runs/5510922120?check_suite_focus=true#step:6:208)
                	            	  })
[209](https://github.com/cosmos/cosmos-sdk/runs/5510922120?check_suite_focus=true#step:6:209)
                	Test:       	TestIntegrationTestSuite/TestGetCmdQueryTotalSupply/total_supply
[210](https://github.com/cosmos/cosmos-sdk/runs/5510922120?check_suite_focus=true#step:6:210)
    suite.go:91: tearing down integration test suite
[211](https://github.com/cosmos/cosmos-sdk/runs/5510922120?check_suite_focus=true#step:6:211)
    network.go:587: cleaning up test network...
[212](https://github.com/cosmos/cosmos-sdk/runs/5510922120?check_suite_focus=true#step:6:212)
    network.go:610: finished cleaning up test network
[213](https://github.com/cosmos/cosmos-sdk/runs/5510922120?check_suite_focus=true#step:6:213)
    network.go:584: released test network lock
[214](https://github.com/cosmos/cosmos-sdk/runs/5510922120?check_suite_focus=true#step:6:214)
FAIL
[215](https://github.com/cosmos/cosmos-sdk/runs/5510922120?check_suite_focus=true#step:6:215)
coverage: 96.6% of statements

im seeing this

@alexanderbez
Copy link
Contributor

@okwme I think we just need to address TestIntegrationTestSuite/TestGetCmdQueryTotalSupply/total_supply.

@mergify mergify bot merged commit 791d38c into master Mar 15, 2022
@mergify mergify bot deleted the okwme-patch-2 branch March 15, 2022 14:43
mergify bot pushed a commit that referenced this pull request Mar 15, 2022
## Description

Closes: #11354

---

### 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
- [x] added `!` to the type prefix if API or client breaking change
- [x] targeted the correct branch (see [PR Targeting](https://github.com/cosmos/cosmos-sdk/blob/master/CONTRIBUTING.md#pr-targeting))
- [x] provided a link to the relevant issue or specification
- [x] followed the guidelines for [building modules](https://github.com/cosmos/cosmos-sdk/blob/master/docs/building-modules)
- [ ] included the necessary unit and integration [tests](https://github.com/cosmos/cosmos-sdk/blob/master/CONTRIBUTING.md#testing)
- [x] 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)

(cherry picked from commit 791d38c)
mergify bot pushed a commit that referenced this pull request Mar 15, 2022
## Description

Closes: #11354

---

### 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
- [x] added `!` to the type prefix if API or client breaking change
- [x] targeted the correct branch (see [PR Targeting](https://github.com/cosmos/cosmos-sdk/blob/master/CONTRIBUTING.md#pr-targeting))
- [x] provided a link to the relevant issue or specification
- [x] followed the guidelines for [building modules](https://github.com/cosmos/cosmos-sdk/blob/master/docs/building-modules)
- [ ] included the necessary unit and integration [tests](https://github.com/cosmos/cosmos-sdk/blob/master/CONTRIBUTING.md#testing)
- [x] 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)

(cherry picked from commit 791d38c)

# Conflicts:
#	CHANGELOG.md
tac0turtle pushed a commit that referenced this pull request Mar 15, 2022
…#11375)

## Description

Closes: #11354

---

### 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
- [x] added `!` to the type prefix if API or client breaking change
- [x] targeted the correct branch (see [PR Targeting](https://github.com/cosmos/cosmos-sdk/blob/master/CONTRIBUTING.md#pr-targeting))
- [x] provided a link to the relevant issue or specification
- [x] followed the guidelines for [building modules](https://github.com/cosmos/cosmos-sdk/blob/master/docs/building-modules)
- [ ] included the necessary unit and integration [tests](https://github.com/cosmos/cosmos-sdk/blob/master/CONTRIBUTING.md#testing)
- [x] 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)

(cherry picked from commit 791d38c)

Co-authored-by: billy rennekamp <billy.rennekamp@gmail.com>
tac0turtle added a commit that referenced this pull request Mar 15, 2022
…#11355) (#11376)

* fix: Update query.go to include pagination for bank q totals (#11355)

## Description

Closes: #11354

---

### 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
- [x] added `!` to the type prefix if API or client breaking change
- [x] targeted the correct branch (see [PR Targeting](https://github.com/cosmos/cosmos-sdk/blob/master/CONTRIBUTING.md#pr-targeting))
- [x] provided a link to the relevant issue or specification
- [x] followed the guidelines for [building modules](https://github.com/cosmos/cosmos-sdk/blob/master/docs/building-modules)
- [ ] included the necessary unit and integration [tests](https://github.com/cosmos/cosmos-sdk/blob/master/CONTRIBUTING.md#testing)
- [x] 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)

(cherry picked from commit 791d38c)

# Conflicts:
#	CHANGELOG.md

* Update CHANGELOG.md

Co-authored-by: billy rennekamp <billy.rennekamp@gmail.com>
Co-authored-by: Marko <marbar3778@yahoo.com>
zakir-code pushed a commit to FunctionX/cosmos-sdk that referenced this pull request Apr 8, 2022
…11355) (cosmos#11375)

## Description

Closes: cosmos#11354

---

### 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
- [x] added `!` to the type prefix if API or client breaking change
- [x] targeted the correct branch (see [PR Targeting](https://github.com/cosmos/cosmos-sdk/blob/master/CONTRIBUTING.md#pr-targeting))
- [x] provided a link to the relevant issue or specification
- [x] followed the guidelines for [building modules](https://github.com/cosmos/cosmos-sdk/blob/master/docs/building-modules)
- [ ] included the necessary unit and integration [tests](https://github.com/cosmos/cosmos-sdk/blob/master/CONTRIBUTING.md#testing)
- [x] 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)

(cherry picked from commit 791d38c)

Co-authored-by: billy rennekamp <billy.rennekamp@gmail.com>
@amaury1093 amaury1093 mentioned this pull request May 23, 2022
72 tasks
JimLarson pushed a commit to agoric-labs/cosmos-sdk that referenced this pull request Jul 7, 2022
…11355) (cosmos#11375)

## Description

Closes: cosmos#11354

---

### 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
- [x] added `!` to the type prefix if API or client breaking change
- [x] targeted the correct branch (see [PR Targeting](https://github.com/cosmos/cosmos-sdk/blob/master/CONTRIBUTING.md#pr-targeting))
- [x] provided a link to the relevant issue or specification
- [x] followed the guidelines for [building modules](https://github.com/cosmos/cosmos-sdk/blob/master/docs/building-modules)
- [ ] included the necessary unit and integration [tests](https://github.com/cosmos/cosmos-sdk/blob/master/CONTRIBUTING.md#testing)
- [x] 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)

(cherry picked from commit 791d38c)

Co-authored-by: billy rennekamp <billy.rennekamp@gmail.com>
randy75828 pushed a commit to Switcheo/cosmos-sdk that referenced this pull request Aug 10, 2022
…11355) (cosmos#11375)

## Description

Closes: cosmos#11354

---

### 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
- [x] added `!` to the type prefix if API or client breaking change
- [x] targeted the correct branch (see [PR Targeting](https://github.com/cosmos/cosmos-sdk/blob/master/CONTRIBUTING.md#pr-targeting))
- [x] provided a link to the relevant issue or specification
- [x] followed the guidelines for [building modules](https://github.com/cosmos/cosmos-sdk/blob/master/docs/building-modules)
- [ ] included the necessary unit and integration [tests](https://github.com/cosmos/cosmos-sdk/blob/master/CONTRIBUTING.md#testing)
- [x] 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)

(cherry picked from commit 791d38c)

Co-authored-by: billy rennekamp <billy.rennekamp@gmail.com>
randy75828 pushed a commit to Switcheo/cosmos-sdk that referenced this pull request Aug 10, 2022
…11355) (cosmos#11375)

## Description

Closes: cosmos#11354

---

### 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
- [x] added `!` to the type prefix if API or client breaking change
- [x] targeted the correct branch (see [PR Targeting](https://github.com/cosmos/cosmos-sdk/blob/master/CONTRIBUTING.md#pr-targeting))
- [x] provided a link to the relevant issue or specification
- [x] followed the guidelines for [building modules](https://github.com/cosmos/cosmos-sdk/blob/master/docs/building-modules)
- [ ] included the necessary unit and integration [tests](https://github.com/cosmos/cosmos-sdk/blob/master/CONTRIBUTING.md#testing)
- [x] 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)

(cherry picked from commit 791d38c)

Co-authored-by: billy rennekamp <billy.rennekamp@gmail.com>
Eengineer1 pushed a commit to cheqd/cosmos-sdk that referenced this pull request Aug 26, 2022
…11355) (cosmos#11375)

Closes: cosmos#11354

---

*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
- [x] added `!` to the type prefix if API or client breaking change
- [x] targeted the correct branch (see [PR Targeting](https://github.com/cosmos/cosmos-sdk/blob/master/CONTRIBUTING.md#pr-targeting))
- [x] provided a link to the relevant issue or specification
- [x] followed the guidelines for [building modules](https://github.com/cosmos/cosmos-sdk/blob/master/docs/building-modules)
- [ ] included the necessary unit and integration [tests](https://github.com/cosmos/cosmos-sdk/blob/master/CONTRIBUTING.md#testing)
- [x] 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

*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)

(cherry picked from commit 791d38c)

Co-authored-by: billy rennekamp <billy.rennekamp@gmail.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
A:automerge Automatically merge PR once all prerequisites pass. C:CLI C:x/bank
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Add pagination to bank q total
5 participants