* Bump required compiler version to 0.5.2. * Fix shadowed variable warning in ERC20Migrator. * Rename Counter to Counters. * Add dummy state variable to SafeERC20Helper. * Update changelog entry. * Fix CountersImpl name. * Improve changelog entry.
16 lines
387 B
Solidity
16 lines
387 B
Solidity
pragma solidity ^0.5.2;
|
|
|
|
import "../cryptography/ECDSA.sol";
|
|
|
|
contract ECDSAMock {
|
|
using ECDSA for bytes32;
|
|
|
|
function recover(bytes32 hash, bytes memory signature) public pure returns (address) {
|
|
return hash.recover(signature);
|
|
}
|
|
|
|
function toEthSignedMessageHash(bytes32 hash) public pure returns (bytes32) {
|
|
return hash.toEthSignedMessageHash();
|
|
}
|
|
}
|