Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove Test import in prod contracts #2

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,5 @@
/lib
/lib/uniswap
/lib/uniswap/*
.env
.env
.DS_Store
2 changes: 1 addition & 1 deletion src/contracts/atlas/Atlas.sol
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import {CallBits} from "../libraries/CallBits.sol";

import "forge-std/Test.sol";

contract Atlas is Test, Factory {
contract Atlas is Factory {
using CallVerification for CallChainProof;
using CallVerification for bytes32[];
using CallBits for uint16;
Expand Down
2 changes: 1 addition & 1 deletion src/contracts/atlas/ExecutionEnvironment.sol
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ import {
SEARCHER_BID_UNPAID
} from "./Emissions.sol";

contract ExecutionEnvironment is Test {
contract ExecutionEnvironment {
using CallVerification for CallChainProof;
using CallBits for uint16;

Expand Down
2 changes: 1 addition & 1 deletion src/contracts/atlas/Factory.sol
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import "../types/CallTypes.sol";

import "forge-std/Test.sol";

contract Factory is Test, Escrow {
contract Factory is Escrow {
//address immutable public atlas;
bytes32 public immutable salt;
address public immutable execution;
Expand Down
Loading