Skip to content

Commit

Permalink
fixed lint
Browse files Browse the repository at this point in the history
  • Loading branch information
sunnya97 authored and mossid committed Nov 1, 2018
1 parent 0374f97 commit e1bd6dd
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions store/queue/queue.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ import (
"github.com/cosmos/cosmos-sdk/store/types"
)

// Prefix for the PrefixStore of the queue
func ListKey() []byte {
return []byte{0x00}
}
Expand Down
1 change: 1 addition & 0 deletions store/types/gas.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// nolint
package types

// Gas consumption descriptors.
Expand Down
1 change: 1 addition & 0 deletions store/utils/utils.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,6 @@ import (
func bz(s string) []byte { return []byte(s) }

// Used for tests - formats integer to bytes
// nolint
func KeyFmt(i int) []byte { return bz(fmt.Sprintf("key%0.8d", i)) }
func ValFmt(i int) []byte { return bz(fmt.Sprintf("value%0.8d", i)) }

0 comments on commit e1bd6dd

Please sign in to comment.