Skip to content

Commit 2a5511b

Browse files
committed
Minor typo fix
1 parent 5f4e4af commit 2a5511b

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

solidity/dashboard/src/services/rewards.service.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -60,11 +60,11 @@ const fetchAvailableRewards = async (web3Context) => {
6060
}
6161
}
6262

63-
const getAvailableRewardForGroup = (oeratorsAmount) => {
63+
const getAvailableRewardForGroup = (operatorsAmount) => {
6464
let wholeReward = 0
65-
for(const operator in oeratorsAmount ) {
66-
if(oeratorsAmount.hasOwnProperty(operator) ) {
67-
wholeReward = add(wholeReward, oeratorsAmount[operator])
65+
for(const operator in operatorsAmount ) {
66+
if(operatorsAmount.hasOwnProperty(operator) ) {
67+
wholeReward = add(wholeReward, operatorsAmount[operator])
6868
}
6969
}
7070
return wholeReward

0 commit comments

Comments
 (0)