Skip to content
This repository has been archived by the owner on May 22, 2023. It is now read-only.

Commit

Permalink
Improved docs of escrow beneficiaries
Browse files Browse the repository at this point in the history
Tokens are transferred from PhasedEscrow to reward contracts.
  • Loading branch information
pdyraga authored Nov 4, 2020
1 parent dec5b77 commit f5db821
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions solidity/contracts/RewardsEscrowBeneficiaries.sol
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ pragma solidity 0.5.17;
import "@keep-network/keep-core/contracts/PhasedEscrow.sol";

/// @title ECDSABackportRewardsEscrowBeneficiary
/// @notice Trasfer the received tokens to a designated
/// ECDSABackportRewardsEscrowBeneficiary contract.
/// @notice Trasfer the received tokens from Phased Escrow to a designated
/// ECDSABackportRewards contract.
contract ECDSABackportRewardsEscrowBeneficiary is StakerRewardsBeneficiary {
constructor(IERC20 _token, IStakerRewards _stakerRewards)
public
Expand All @@ -13,8 +13,8 @@ contract ECDSABackportRewardsEscrowBeneficiary is StakerRewardsBeneficiary {
}

/// @title ECDSARewardsEscrowBeneficiary
/// @notice Transfer the received tokens to a designated
/// ECDSARewardsEscrowBeneficiary contract.
/// @notice Transfer the received tokens from PhasedEscrow to a designated
/// ECDSARewards contract.
contract ECDSARewardsEscrowBeneficiary is StakerRewardsBeneficiary {
constructor(IERC20 _token, IStakerRewards _stakerRewards)
public
Expand Down

0 comments on commit f5db821

Please sign in to comment.