Skip to content

Commit

Permalink
Update docs
Browse files Browse the repository at this point in the history
  • Loading branch information
v-homsi committed Nov 22, 2022
1 parent 67017da commit fa89995
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 0 additions & 2 deletions docs/protocol/telemetry.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ To understand how to use the metrics below, please refer to the [Cosmos SDK tele
| :--------------------------------------------- | :---------------------------------------------------------------------------------- | :---------- | :------ |
| `feemarket_base_fee` | Amount of base fee per EIP-1559 block | token | gauge |
| `feemarket_block_gas` | Amount of gas used in an EIP-1559 block | token | gauge |
| `feesplit_distribute_total` | Amount of fees distributed to registered smart contracts | token | counter |
| `recovery_ibc_on_recv_total` | Total number of recoveries using the ibc `onRecvPacket` callback | recovery | counter |
| `recovery_ibc_on_recv_token_total` | Total amount of tokens recovered using the ibc `onRecvPacket` callback | token | counter |
| `tx_msg_convert_coin_amount_total` | Total amount of converted coins using a `ConvertCoin` msg | token | counter |
Expand All @@ -26,7 +25,6 @@ To understand how to use the metrics below, please refer to the [Cosmos SDK tele
| `tx_msg_ethereum_tx_gas_limit_per_gas_used` | Ratio of gas limit to gas used for a etheruem tx | ratio | gauge |
| `tx_msg_ethereum_tx_incentives_total` | Total number of txs with an incentivized contract processed via the EVM | tx | counter |
| `tx_msg_ethereum_tx_incentives_gas_used_total` | Total amount of gas used by txs with an incentivized contract processed via the EVM | token | counter |
| `incentives_distribute_participant_total` | Total number of participants who received rewards | participant | counter |
| `incentives_distribute_reward_total` | Total amount of rewards that are distributed to all incentives' participants | token | counter |
| `inflation_allocate_total` | Total amount of tokens allocated through inflation | token | counter |
| `inflation_allocate_staking_total` | Total amount of tokens allocated through inflation to staking | token | counter |
Expand Down
2 changes: 1 addition & 1 deletion x/incentives/keeper/distribution.go
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ func (k Keeper) DistributeRewards(ctx sdk.Context) error {
}

k.IterateIncentives(ctx, func(incentive types.Incentive) (stop bool) {
k.rewardParticipants(ctx, incentive, rewardAllocations)
_, _ = k.rewardParticipants(ctx, incentive, rewardAllocations)

incentive.Epochs--

Expand Down

0 comments on commit fa89995

Please sign in to comment.