We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5f4e4af commit 2a5511bCopy full SHA for 2a5511b
1 file changed
solidity/dashboard/src/services/rewards.service.js
@@ -60,11 +60,11 @@ const fetchAvailableRewards = async (web3Context) => {
60
}
61
62
63
-const getAvailableRewardForGroup = (oeratorsAmount) => {
+const getAvailableRewardForGroup = (operatorsAmount) => {
64
let wholeReward = 0
65
- for(const operator in oeratorsAmount ) {
66
- if(oeratorsAmount.hasOwnProperty(operator) ) {
67
- wholeReward = add(wholeReward, oeratorsAmount[operator])
+ for(const operator in operatorsAmount ) {
+ if(operatorsAmount.hasOwnProperty(operator) ) {
+ wholeReward = add(wholeReward, operatorsAmount[operator])
68
69
70
return wholeReward
0 commit comments