Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Update StakeHolder.sol
  • Loading branch information
leopardracer authored Feb 23, 2025
commit a7bf20070f97703e598dd9a37662f94b19367393
2 changes: 1 addition & 1 deletion contracts/staking/StakeHolder.sol
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ contract StakeHolder is AccessControlEnumerableUpgradeable, UUPSUpgradeable {
for (uint256 i = 0; i < len; i++) {
AccountAmount calldata accountAmount = _recipientsAndAmounts[i];
uint256 amount = accountAmount.amount;
// Add stake, but require the acount to either currently be staking or have
// Add stake, but require the account to either currently be staking or have
// previously staked.
_addStake(accountAmount.account, amount, true);
total += amount;
Expand Down