Skip to content

Commit

Permalink
rename folder
Browse files Browse the repository at this point in the history
  • Loading branch information
obatirou committed Nov 14, 2024
1 parent 0958f1b commit 2d72b4d
Show file tree
Hide file tree
Showing 8 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion solidity_contracts/src/CairoPrecompiles/DualVmToken.sol
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ pragma solidity 0.8.27;

import {WhitelistedCallCairoLib} from "./WhitelistedCallCairoLib.sol";
import {CairoLib} from "kakarot-lib/CairoLib.sol";
import {NoDelegateCall} from "../Security/NoDelegateCall.sol";
import {NoDelegateCall} from "../NoDelegateCall/NoDelegateCall.sol";

/// @notice EVM adapter into a Cairo ERC20 token
/// @dev This implementation is highly experimental
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
pragma solidity 0.8.27;

import {CairoLib} from "kakarot-lib/CairoLib.sol";
import {NoDelegateCall} from "../Security/NoDelegateCall.sol";
import {NoDelegateCall} from "../NoDelegateCall/NoDelegateCall.sol";

contract L2KakarotMessaging is NoDelegateCall {
/// @notice Sends a message to a contract on L1.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ async def starknet_token(owner):
scope="package",
params=[
("CairoPrecompiles", "DualVmToken"),
("Security", "DualVmTokenWithoutModifier"),
("NoDelegateCallTesting", "DualVmTokenWithoutModifier"),
],
ids=["Modifier", "NoModifier"],
)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
@pytest_asyncio.fixture(scope="function")
async def messaging_hack_contract(owner):
return await deploy(
"Security",
"NoDelegateCallTesting",
"L2MessagingHack",
_target=to_checksum_address(
get_evm_deployments()["L2KakarotMessaging"]["address"]
Expand Down

0 comments on commit 2d72b4d

Please sign in to comment.