From 6c91a0f7144b2ee39b96acb284f3c5b715ef7a7b Mon Sep 17 00:00:00 2001 From: Piotr Dyraga Date: Wed, 4 Nov 2020 17:18:04 +0100 Subject: [PATCH] Renamed sol file with escrow beneficiaries Renamed the file to ECDSARewardsEscrowBeneficiary.sol Our etherum bindings code generator could not deal with the fact RewardsEscrowBeneficiaries.abi does not exist and it was looking this file because the beneficiaries were placed in RewardsEscrowBeneficiaries.sol. --- ...ies.sol => ECDSARewardsEscrowBeneficiary.sol} | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) rename solidity/contracts/{RewardsEscrowBeneficiaries.sol => ECDSARewardsEscrowBeneficiary.sol} (100%) diff --git a/solidity/contracts/RewardsEscrowBeneficiaries.sol b/solidity/contracts/ECDSARewardsEscrowBeneficiary.sol similarity index 100% rename from solidity/contracts/RewardsEscrowBeneficiaries.sol rename to solidity/contracts/ECDSARewardsEscrowBeneficiary.sol index 3f7cfe969..73d386ff3 100644 --- a/solidity/contracts/RewardsEscrowBeneficiaries.sol +++ b/solidity/contracts/ECDSARewardsEscrowBeneficiary.sol @@ -2,20 +2,20 @@ pragma solidity 0.5.17; import "@keep-network/keep-core/contracts/PhasedEscrow.sol"; -/// @title ECDSABackportRewardsEscrowBeneficiary -/// @notice Trasfer the received tokens from Phased Escrow to a designated -/// ECDSABackportRewards contract. -contract ECDSABackportRewardsEscrowBeneficiary is StakerRewardsBeneficiary { +/// @title ECDSARewardsEscrowBeneficiary +/// @notice Transfer the received tokens from PhasedEscrow to a designated +/// ECDSARewards contract. +contract ECDSARewardsEscrowBeneficiary is StakerRewardsBeneficiary { constructor(IERC20 _token, IStakerRewards _stakerRewards) public StakerRewardsBeneficiary(_token, _stakerRewards) {} } -/// @title ECDSARewardsEscrowBeneficiary -/// @notice Transfer the received tokens from PhasedEscrow to a designated -/// ECDSARewards contract. -contract ECDSARewardsEscrowBeneficiary is StakerRewardsBeneficiary { +/// @title ECDSABackportRewardsEscrowBeneficiary +/// @notice Trasfer the received tokens from Phased Escrow to a designated +/// ECDSABackportRewards contract. +contract ECDSABackportRewardsEscrowBeneficiary is StakerRewardsBeneficiary { constructor(IERC20 _token, IStakerRewards _stakerRewards) public StakerRewardsBeneficiary(_token, _stakerRewards)