Skip to content

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

Merged
mergify[bot] merged 10 commits intomasterfrom
okwme-patch-2
Mar 15, 2022
Merged

fix: Update query.go to include pagination for bank q totals#11355
mergify[bot] merged 10 commits intomasterfrom
okwme-patch-2

Conversation

@okwme
Copy link
Copy Markdown
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
Copy link
Copy Markdown
Contributor

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

@okwme
Copy link
Copy Markdown
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
Copy Markdown
Contributor

--- 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
Copy Markdown
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-web3 pushed a commit to PundiAI/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>
JeancarloBarrios pushed a commit to agoric-labs/cosmos-sdk that referenced this pull request Sep 28, 2024
…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>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

Add pagination to bank q total

5 participants