Skip to content

Commit

Permalink
refactor: use relative path that stays inside folder (#199)
Browse files Browse the repository at this point in the history
Currently this path extends outside the root contract folder path, which could cause issues with tools that expect to use this tools from within the `src` path

Co-authored-by: marktoda <toda.mark@gmail.com>
  • Loading branch information
fubuloubu and marktoda committed Sep 29, 2023
1 parent 7341410 commit c3cf1a1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/AllowanceTransfer.sol
Expand Up @@ -6,7 +6,7 @@ import {SafeTransferLib} from "solmate/src/utils/SafeTransferLib.sol";
import {PermitHash} from "./libraries/PermitHash.sol";
import {SignatureVerification} from "./libraries/SignatureVerification.sol";
import {EIP712} from "./EIP712.sol";
import {IAllowanceTransfer} from "../src/interfaces/IAllowanceTransfer.sol";
import {IAllowanceTransfer} from "./interfaces/IAllowanceTransfer.sol";
import {SignatureExpired, InvalidNonce} from "./PermitErrors.sol";
import {Allowance} from "./libraries/Allowance.sol";

Expand Down

0 comments on commit c3cf1a1

Please sign in to comment.