Skip to content
This repository has been archived by the owner on Jun 9, 2024. It is now read-only.

Commit

Permalink
chore(test): fix typo in contracts/src/testing/DistributionWrapper.sol (
Browse files Browse the repository at this point in the history
  • Loading branch information
xiaolou86 authored Oct 27, 2023
1 parent d34a732 commit 7dd6df9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions contracts/src/testing/DistributionWrapper.sol
Original file line number Diff line number Diff line change
Expand Up @@ -60,15 +60,15 @@ contract DistributionWrapper {
}

/**
* @dev Withdraw the rewrads accumilated by the caller(msg.sender).
* @dev Withdraw the rewrads accumulated by the caller(msg.sender).
* @param _withdrawAddress The address of the delegator.
*/
function setWithdrawAddress(address _withdrawAddress) external returns (bool) {
return distribution.setWithdrawAddress(_withdrawAddress);
}

/**
* @dev Withdraw the rewrads accumilated by the caller(msg.sender).
* @dev Withdraw the rewrads accumulated by the caller(msg.sender).
* @param _delegatorAddress The address of the delegator.
* @param _validatorAddress The address of the validator.
*/
Expand All @@ -77,7 +77,7 @@ contract DistributionWrapper {
}

/**
* @dev Withdraw the rewrads accumilated by the caller(msg.sender).
* @dev Withdraw the rewrads accumulated by the caller(msg.sender).
* @param _validator The address of the validator.
*/
function delegate(address _validator) external payable {
Expand Down

0 comments on commit 7dd6df9

Please sign in to comment.