Skip to content

Commit

Permalink
chore: fix some function names in comment
Browse files Browse the repository at this point in the history
Signed-off-by: acceptacross <[email protected]>
  • Loading branch information
acceptacross committed Dec 19, 2024
1 parent 1accdef commit 4e5c380
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion x/feeds/keeper/keeper_price.go
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ func (k Keeper) GetValidatorPriceList(ctx sdk.Context, val sdk.ValAddress) (type
return valPricesList, nil
}

// SetValidatorPrices sets validator prices list.
// SetValidatorPriceList sets validator prices list.
func (k Keeper) SetValidatorPriceList(
ctx sdk.Context,
valAddress sdk.ValAddress,
Expand Down
2 changes: 1 addition & 1 deletion x/oracle/client/cli/tx.go
Original file line number Diff line number Diff line change
Expand Up @@ -638,7 +638,7 @@ $ %s tx oracle add-reporters band1p40yh3zkmhcv0ecqp3mcazy83sa57rgjp07dun band1m5
return cmd
}

// GetCmdRemoveReporter implements the remove reporter command handler.
// GetCmdRemoveReporters implements the remove reporter command handler.
func GetCmdRemoveReporters() *cobra.Command {
cmd := &cobra.Command{
Use: "remove-reporters [reporter1] [reporter2] ...",
Expand Down
2 changes: 1 addition & 1 deletion x/oracle/keeper/report.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ func (k Keeper) SetReport(ctx sdk.Context, rid types.RequestID, rep types.Report
ctx.KVStore(k.storeKey).Set(key, k.cdc.MustMarshal(&rep))
}

// AddReports performs sanity checks and adds a new batch from one validator to one request
// AddReport performs sanity checks and adds a new batch from one validator to one request
// to the store. Note that we expect each validator to report to all raw data requests at once.
func (k Keeper) AddReport(
ctx sdk.Context,
Expand Down

0 comments on commit 4e5c380

Please sign in to comment.