Skip to content

Commit

Permalink
ci: Bump CI
Browse files Browse the repository at this point in the history
  • Loading branch information
alsco77 authored and naddison36 committed Jul 9, 2021
1 parent d48cd73 commit fdb296b
Showing 1 changed file with 19 additions and 3 deletions.
22 changes: 19 additions & 3 deletions contracts/masset/peripheral/AlchemixIntegration.sol
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,31 @@ import { AbstractIntegration } from "./AbstractIntegration.sol";

interface IStakingPools {
function claim(uint256 _poolId) external;

function deposit(uint256 _poolId, uint256 _depositAmount) external;

function exit(uint256 _poolId) external;
function getStakeTotalDeposited(address _account, uint256 _poolId) external view returns (uint256);
function getStakeTotalUnclaimed(address _account, uint256 _poolId) external view returns (uint256);

function getStakeTotalDeposited(address _account, uint256 _poolId)
external
view
returns (uint256);

function getStakeTotalUnclaimed(address _account, uint256 _poolId)
external
view
returns (uint256);

function getPoolRewardRate(uint256 _poolId) external view returns (uint256);

function getPoolRewardWeight(uint256 _poolId) external view returns (uint256);

function getPoolToken(uint256 _poolId) external view returns (address);

function reward() external view returns (address);

function tokenPoolIds(address _token) external view returns (uint256);

function withdraw(uint256 _poolId, uint256 _withdrawAmount) external;
}

Expand Down Expand Up @@ -70,7 +86,7 @@ contract AlchemixIntegration is AbstractIntegration {
}

/**
@dev Claims any accrued rewardToken for a given bAsset staked
* @dev Claims any accrued rewardToken for a given bAsset staked
*/
function claim(address _bAsset) external onlyGovernor {
uint256 poolId = _getPoolIdFor(_bAsset);
Expand Down

0 comments on commit fdb296b

Please sign in to comment.