Skip to content

Commit

Permalink
fix(doc): update log
Browse files Browse the repository at this point in the history
  • Loading branch information
MaxMustermann2 committed Oct 18, 2024
1 parent daff41e commit 6a8cda6
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion x/assets/keeper/msg_server.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ func (k Keeper) UpdateParams(ctx context.Context, params *assetstype.MsgUpdatePa
)
}
c.Logger().Info(
"UpdateParams request from arbitrary address",
"UpdateParams request",
"authority", k.authority,
"params.AUthority", params.Authority,
)
Expand Down
2 changes: 1 addition & 1 deletion x/dogfood/keeper/msg_server.go
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ func (k Keeper) UpdateParams(
)
}
k.Logger(c).Info(
"UpdateParams request from arbitrary address",
"UpdateParams request",
"authority", k.authority,
"params.Authority", msg.Authority,
)
Expand Down
2 changes: 1 addition & 1 deletion x/exomint/keeper/msg_server.go
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ func (k Keeper) UpdateParams(
)
}
k.Logger(c).Info(
"UpdateParams request from arbitrary address",
"UpdateParams request",
"authority", k.authority,
"params.Authority", msg.Authority,
)
Expand Down
2 changes: 1 addition & 1 deletion x/feedistribution/keeper/msg_update_params.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ func (k msgServer) UpdateParams(goCtx context.Context, req *types.MsgUpdateParam
}

k.Logger().Info(
"UpdateParams request from arbitrary address",
"UpdateParams request",
"authority", k.authority,
"params.Authority", req.Authority,
)
Expand Down
2 changes: 1 addition & 1 deletion x/oracle/keeper/msg_server_update_params.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ func (ms msgServer) UpdateParams(goCtx context.Context, msg *types.MsgUpdatePara
}

ms.Keeper.Logger(ctx).Info(
"UpdateParams request from arbitrary address",
"UpdateParams request",
"authority", ms.Keeper.authority,
"params.AUthority", msg.Authority,
)
Expand Down
2 changes: 1 addition & 1 deletion x/reward/keeper/msg_server.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ func (k Keeper) UpdateParams(ctx context.Context, params *types.MsgUpdateParams)
}

k.Logger(c).Info(
"UpdateParams request from arbitrary address",
"UpdateParams request",
"authority", k.authority,
"params.AUthority", params.Authority,
)
Expand Down
2 changes: 1 addition & 1 deletion x/slash/keeper/msg_server.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ func (k Keeper) UpdateParams(ctx context.Context, params *types.MsgUpdateParams)
}

k.Logger(c).Info(
"UpdateParams request from arbitrary address",
"UpdateParams request",
"authority", k.authority,
"params.AUthority", params.Authority,
)
Expand Down

0 comments on commit 6a8cda6

Please sign in to comment.