Solidity 0.7.5 -> 0.7.6

pull/2518/head
vzotova 2021-01-13 15:25:44 +03:00
parent ddf39e238d
commit 08e2098dc2
2 changed files with 2 additions and 2 deletions

View File

@ -15,4 +15,4 @@ You should have received a copy of the GNU Affero General Public License
along with nucypher. If not, see <https://www.gnu.org/licenses/>.
"""
SOLIDITY_COMPILER_VERSION = 'v0.7.5'
SOLIDITY_COMPILER_VERSION = 'v0.7.6'

View File

@ -161,7 +161,7 @@ contract WorkLockForStakingContractMock {
compensationValue = msg.value;
}
function compensation(address) public returns (uint256) {
function compensation(address) public view returns (uint256) {
return compensationValue;
}