Skip to content

Commit

Permalink
rebase onto master
Browse files Browse the repository at this point in the history
  • Loading branch information
Amxx committed Feb 23, 2021
1 parent d355a50 commit a8011dc
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion contracts/mocks/ERC1271WalletMock.sol
Expand Up @@ -3,8 +3,8 @@
pragma solidity ^0.8.0;

import "../access/Ownable.sol";
import "../cryptography/ECDSA.sol";
import "../interfaces/IERC1271.sol";
import "../utils/cryptography/ECDSA.sol";

contract ERC1271WalletMock is Ownable, IERC1271 {
constructor(address originalOwner) {
Expand Down
2 changes: 1 addition & 1 deletion contracts/mocks/SignatureCheckerMock.sol
Expand Up @@ -2,7 +2,7 @@

pragma solidity ^0.8.0;

import "../cryptography/SignatureChecker.sol";
import "../utils/cryptography/SignatureChecker.sol";

contract SignatureCheckerMock {
using SignatureChecker for address;
Expand Down
Expand Up @@ -3,8 +3,8 @@
pragma solidity >=0.6.0 <0.9.0;

import "./ECDSA.sol";
import "../interfaces/IERC1271.sol";
import "../utils/Address.sol";
import "../Address.sol";
import "../../interfaces/IERC1271.sol";

library SignatureChecker {
function isValidSignature(address signer, bytes32 hash, bytes memory signature) internal view returns (bool) {
Expand Down
@@ -1,4 +1,4 @@
const { toEthSignedMessageHash, fixSignature } = require('../helpers/sign');
const { toEthSignedMessageHash, fixSignature } = require('../../helpers/sign');

const { expect } = require('chai');

Expand Down

0 comments on commit a8011dc

Please sign in to comment.