Skip to content

Commit cceea4d

Browse files
authoredAug 30, 2022
chore: Format and fix lints (#9336)
* make format Signed-off-by: Thane Thomson <[email protected]> * Fix linting directives Signed-off-by: Thane Thomson <[email protected]> * make mockery Signed-off-by: Thane Thomson <[email protected]> * Appease CI linter Signed-off-by: Thane Thomson <[email protected]> * Appease CI linter Signed-off-by: Thane Thomson <[email protected]> Signed-off-by: Thane Thomson <[email protected]>
1 parent 7b40167 commit cceea4d

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

87 files changed

+402
-384
lines changed
 

‎abci/example/kvstore/kvstore_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ func TestValUpdates(t *testing.T) {
162162

163163
makeApplyBlock(t, kvstore, 2, diff, tx1, tx2, tx3)
164164

165-
vals1 = append(vals[:nInit-2], vals[nInit+1]) // nolint: gocritic
165+
vals1 = append(vals[:nInit-2], vals[nInit+1]) //nolint: gocritic
166166
vals2 = kvstore.Validators()
167167
valsEqual(t, vals1, vals2)
168168

‎abci/server/server.go

+2-3
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,8 @@
22
Package server is used to start a new ABCI server.
33
44
It contains two server implementation:
5-
* gRPC server
6-
* socket server
7-
5+
- gRPC server
6+
- socket server
87
*/
98
package server
109

0 commit comments

Comments
 (0)