Merge pull request #2448 from vzotova/small

Preparation for #2439
pull/2369/head
David Núñez 2020-11-23 18:46:25 +01:00 committed by GitHub
commit 1978f99764
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
8 changed files with 10 additions and 5 deletions

View File

@ -11,6 +11,7 @@ import "zeppelin/math/Math.sol";
/**
* @title Adjudicator
* @notice Supervises stakers' behavior and punishes when something's wrong.
* @dev |v2.1.2|
*/

View File

@ -11,6 +11,7 @@ import "zeppelin/token/ERC20/SafeERC20.sol";
/**
* @title Issuer
* @notice Contract for calculation of issued tokens
* @dev |v3.3.1|
*/

View File

@ -7,6 +7,7 @@ import "zeppelin/math/SafeMath.sol";
/**
* @title MultiSig
* @notice Multi-signature contract with off-chain signing
*/
contract MultiSig {

View File

@ -8,7 +8,7 @@ import "zeppelin/token/ERC20/ERC20Detailed.sol";
/**
* @title NuCypher token
* @title NuCypherToken
* @notice ERC20 token
* @dev Optional approveAndCall() functionality to notify a contract if an approve() has occurred.
*/

View File

@ -15,6 +15,7 @@ import "contracts/proxy/Upgradeable.sol";
/**
* @title PolicyManager
* @notice Contract holds policy data and locks accrued policy fees
* @dev |v6.1.3|
*/

View File

@ -43,6 +43,7 @@ interface WorkLockInterface {
/**
* @title StakingEscrow
* @notice Contract holds and locks stakers tokens.
* Each staker that locks their tokens will receive some compensation
* @dev |v5.5.1|

View File

@ -3,8 +3,8 @@
pragma solidity ^0.7.0;
import "./IERC20.sol";
import "../../math/SafeMath.sol";
import "zeppelin/token/ERC20/IERC20.sol";
import "zeppelin/math/SafeMath.sol";
/**

View File

@ -3,8 +3,8 @@
pragma solidity ^0.7.0;
import "./IERC20.sol";
import "../../math/SafeMath.sol";
import "zeppelin/token/ERC20/IERC20.sol";
import "zeppelin/math/SafeMath.sol";
/**