Skip to content

Commit 78f15a0

Browse files
committed
Fix linter errors
Signed-off-by: Abdulbois <abdulbois.tursunov@dsr-corporation.com> Signed-off-by: Abdulbois <abdulbois123@gmail.com>
1 parent deee3b4 commit 78f15a0

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

x/pki/keeper/noc_root_certificates.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ func (k Keeper) RemoveNocRootCertificates(
7070
))
7171
}
7272

73-
// GetAllNocRootCertificates returns all nocRootCertificates
73+
// GetAllNocRootCertificates returns all nocRootCertificates.
7474
func (k Keeper) GetAllNocRootCertificates(ctx sdk.Context) (list []types.NocRootCertificates) {
7575
store := prefix.NewStore(ctx.KVStore(k.storeKey), pkitypes.KeyPrefix(types.NocRootCertificatesKeyPrefix))
7676
iterator := sdk.KVStorePrefixIterator(store, []byte{})

x/pki/types/key_noc_root_certificates.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@ import "encoding/binary"
55
var _ binary.ByteOrder
66

77
const (
8-
// NocRootCertificatesKeyPrefix is the prefix to retrieve all NocRootCertificates
8+
// NocRootCertificatesKeyPrefix is the prefix to retrieve all NocRootCertificates.
99
NocRootCertificatesKeyPrefix = "NocRootCertificates/value/"
1010
)
1111

12-
// NocRootCertificatesKey returns the store key to retrieve a NocRootCertificates from the index fields
12+
// NocRootCertificatesKey returns the store key to retrieve a NocRootCertificates from the index fields.
1313
func NocRootCertificatesKey(
1414
vid int32,
1515
) []byte {

0 commit comments

Comments
 (0)