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

chore(test): fix typo in contracts/src/testing/DistributionWrapper.sol #1253

Merged
merged 1 commit into from
Oct 27, 2023
Merged
Changes from all commits
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
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