diff --git a/x/feeds/keeper/keeper_price.go b/x/feeds/keeper/keeper_price.go index 95cfb10e0..85c198481 100644 --- a/x/feeds/keeper/keeper_price.go +++ b/x/feeds/keeper/keeper_price.go @@ -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, diff --git a/x/oracle/client/cli/tx.go b/x/oracle/client/cli/tx.go index 5626b0e95..7046776e5 100644 --- a/x/oracle/client/cli/tx.go +++ b/x/oracle/client/cli/tx.go @@ -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] ...", diff --git a/x/oracle/keeper/report.go b/x/oracle/keeper/report.go index 07374c93e..b3d00d47b 100644 --- a/x/oracle/keeper/report.go +++ b/x/oracle/keeper/report.go @@ -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,