Skip to content

Commit

Permalink
move NoDelegateCall into base folder (#11)
Browse files Browse the repository at this point in the history
* move NoDelegateCall into base folder

Signed-off-by: Mo Shaikjee <shaikjeemohammed@gmail.com>

* fix import path

Signed-off-by: Mo Shaikjee <shaikjeemohammed@gmail.com>

---------

Signed-off-by: Mo Shaikjee <shaikjeemohammed@gmail.com>
  • Loading branch information
mshakeg committed Oct 14, 2023
1 parent b2d27a9 commit 25d11d1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// SPDX-License-Identifier: Apache-2.0
pragma solidity >=0.8.0;

import "./libraries/Constants.sol";
import "../libraries/Constants.sol";

/// @title Prevents delegatecall to a contract
/// @notice Base contract that provides a modifier for preventing delegatecall to methods in a child contract
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import '../../../../contracts/hts-precompile/HederaResponseCodes.sol';
import '../../../../contracts/hts-precompile/KeyHelper.sol';
import './HederaFungibleToken.sol';
import './HederaNonFungibleToken.sol';
import '../../../../contracts/NoDelegateCall.sol';
import '../../../../contracts/base/NoDelegateCall.sol';
import '../../../../contracts/libraries/Constants.sol';

import '../interfaces/IHtsPrecompileMock.sol';
Expand Down

0 comments on commit 25d11d1

Please sign in to comment.