Skip to content

Commit

Permalink
fix solmate paths
Browse files Browse the repository at this point in the history
  • Loading branch information
luisgj committed Sep 20, 2024
1 parent 9e7fa6b commit 966ff45
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/CREATE3UUPSProxy.sol
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ pragma solidity >=0.8.0;

import "@openzeppelin/contracts/proxy/ERC1967/ERC1967Proxy.sol";
import "@openzeppelin/contracts/utils/Create2.sol";
import "solmate/src/utils/CREATE3.sol";
import "solmate/utils/CREATE3.sol";

/// @title CREATE3UUPSProxy
/// @author g6s
Expand Down
2 changes: 1 addition & 1 deletion test/CREATE3UUPSProxyTest.sol
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
pragma solidity ^0.8.20;

import "forge-std/Test.sol";
import "solmate/src/utils/CREATE3.sol";
import "solmate/utils/CREATE3.sol";
import "../src/CREATE3UUPSProxy.sol";
import "./TestImplementation.sol";
import "@openzeppelin/contracts/proxy/ERC1967/ERC1967Proxy.sol";
Expand Down

0 comments on commit 966ff45

Please sign in to comment.