Commit ea52a75 1 parent c0a8e81 commit ea52a75 Copy full SHA for ea52a75
File tree 1 file changed +3
-3
lines changed
modules/apps/27-interchain-accounts/controller/keeper
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -6,20 +6,20 @@ import (
6
6
"github.com/cosmos/ibc-go/v3/modules/apps/27-interchain-accounts/controller/types"
7
7
)
8
8
9
- // IsControllerEnabled retrieves the host enabled boolean from the paramstore.
9
+ // IsControllerEnabled retrieves the controller enabled boolean from the paramstore.
10
10
// True is returned if the controller submodule is enabled.
11
11
func (k Keeper ) IsControllerEnabled (ctx sdk.Context ) bool {
12
12
var res bool
13
13
k .paramSpace .Get (ctx , types .KeyControllerEnabled , & res )
14
14
return res
15
15
}
16
16
17
- // GetParams returns the total set of the host submodule parameters.
17
+ // GetParams returns the total set of the controller submodule parameters.
18
18
func (k Keeper ) GetParams (ctx sdk.Context ) types.Params {
19
19
return types .NewParams (k .IsControllerEnabled (ctx ))
20
20
}
21
21
22
- // SetParams sets the total set of the host submodule parameters.
22
+ // SetParams sets the total set of the controller submodule parameters.
23
23
func (k Keeper ) SetParams (ctx sdk.Context , params types.Params ) {
24
24
k .paramSpace .SetParamSet (ctx , & params )
25
25
}
You can’t perform that action at this time.
0 commit comments