Skip to content

Commit

Permalink
remove missing stuff
Browse files Browse the repository at this point in the history
fix missing imports
  • Loading branch information
oveddan committed Aug 10, 2023
1 parent 9992967 commit 2e54764
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 4 deletions.
1 change: 0 additions & 1 deletion src/deployment/DeploymentConfig.sol
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
pragma solidity 0.8.17;

import "forge-std/Test.sol";
import {MintFeeManager} from "../../src/fee/MintFeeManager.sol";
import {Strings} from "@openzeppelin/contracts/utils/Strings.sol";

/// @notice Chain configuration for constants set manually during deploy. Does not get written to after deploys.
Expand Down
1 change: 0 additions & 1 deletion src/nft/ZoraCreator1155Impl.sol
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@ import {ITransferHookReceiver} from "../interfaces/ITransferHookReceiver.sol";
import {IFactoryManagedUpgradeGate} from "../interfaces/IFactoryManagedUpgradeGate.sol";
import {IZoraCreator1155} from "../interfaces/IZoraCreator1155.sol";
import {LegacyNamingControl} from "../legacy-naming/LegacyNamingControl.sol";
import {MintFeeManager} from "../fee/MintFeeManager.sol";
import {PublicMulticall} from "../utils/PublicMulticall.sol";
import {SharedBaseConstants} from "../shared/SharedBaseConstants.sol";
import {TransferHelperUtils} from "../utils/TransferHelperUtils.sol";
Expand Down
3 changes: 1 addition & 2 deletions test/factory/ZoraCreator1155Factory_Fork.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ import {ICreatorRoyaltiesControl} from "../../src/interfaces/ICreatorRoyaltiesCo
import {MockContractMetadata} from "../mock/MockContractMetadata.sol";
import {Strings} from "@openzeppelin/contracts/utils/Strings.sol";
import {ZoraCreatorFixedPriceSaleStrategy} from "../../src/minters/fixed-price/ZoraCreatorFixedPriceSaleStrategy.sol";
import {MintFeeManager} from "../../src/fee/MintFeeManager.sol";

import {ForkDeploymentConfig} from "../../src/deployment/DeploymentConfig.sol";

Expand Down Expand Up @@ -111,7 +110,7 @@ contract ZoraCreator1155FactoryForkTest is ForkDeploymentConfig, Test {
// ** 3. Mint on that contract **

// get the mint fee from the contract
uint256 mintFee = MintFeeManager(address(target)).mintFee();
uint256 mintFee = 0.000777 ether;

// make sure the mint fee amount matches the configured mint fee amount
assertEq(mintFee, getChainConfig().mintFeeAmount, chainName);
Expand Down

0 comments on commit 2e54764

Please sign in to comment.