File tree 2 files changed +3
-3
lines changed
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -70,7 +70,7 @@ func (k Keeper) RemoveNocRootCertificates(
70
70
))
71
71
}
72
72
73
- // GetAllNocRootCertificates returns all nocRootCertificates
73
+ // GetAllNocRootCertificates returns all nocRootCertificates.
74
74
func (k Keeper ) GetAllNocRootCertificates (ctx sdk.Context ) (list []types.NocRootCertificates ) {
75
75
store := prefix .NewStore (ctx .KVStore (k .storeKey ), pkitypes .KeyPrefix (types .NocRootCertificatesKeyPrefix ))
76
76
iterator := sdk .KVStorePrefixIterator (store , []byte {})
Original file line number Diff line number Diff line change @@ -5,11 +5,11 @@ import "encoding/binary"
5
5
var _ binary.ByteOrder
6
6
7
7
const (
8
- // NocRootCertificatesKeyPrefix is the prefix to retrieve all NocRootCertificates
8
+ // NocRootCertificatesKeyPrefix is the prefix to retrieve all NocRootCertificates.
9
9
NocRootCertificatesKeyPrefix = "NocRootCertificates/value/"
10
10
)
11
11
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.
13
13
func NocRootCertificatesKey (
14
14
vid int32 ,
15
15
) []byte {
You can’t perform that action at this time.
0 commit comments