Skip to content

Commit

Permalink
fix merge conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
oveddan committed Aug 9, 2023
1 parent 99008b6 commit fdf504a
Showing 1 changed file with 0 additions and 9 deletions.
9 changes: 0 additions & 9 deletions src/deployment/DeploymentConfig.sol
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,8 @@ struct Deployment {
address factoryImpl;
/// @notice Factory proxy contract that creates zora drops style NFT contracts
address factoryProxy;
<<<<<<< HEAD
=======
/// @notice Preminter contract address
address preminter;
>>>>>>> 9ec0422 (Premint)
}

abstract contract DeploymentConfig is CommonBase {
Expand All @@ -60,10 +57,7 @@ abstract contract DeploymentConfig is CommonBase {
string constant CONTRACT_1155_IMPL = "CONTRACT_1155_IMPL";
string constant FACTORY_IMPL = "FACTORY_IMPL";
string constant FACTORY_PROXY = "FACTORY_PROXY";
<<<<<<< HEAD
=======
string constant PREMINTER = "PREMINTER";
>>>>>>> 9ec0422 (Premint)

/// @notice Return a prefixed key for reading with a ".".
/// @param key key to prefix
Expand Down Expand Up @@ -92,10 +86,7 @@ abstract contract DeploymentConfig is CommonBase {
deployment.contract1155Impl = json.readAddress(getKeyPrefix(CONTRACT_1155_IMPL));
deployment.factoryImpl = json.readAddress(getKeyPrefix(FACTORY_IMPL));
deployment.factoryProxy = json.readAddress(getKeyPrefix(FACTORY_PROXY));
<<<<<<< HEAD
=======
deployment.preminter = json.readAddress(getKeyPrefix(PREMINTER));
>>>>>>> 9ec0422 (Premint)
}
}

Expand Down

0 comments on commit fdf504a

Please sign in to comment.