Commit cf71665f authored by Mark Tyneway's avatar Mark Tyneway

contracts-bedrock: fix compilation

parent 1ee24852
...@@ -308,7 +308,7 @@ abstract contract Deployer is Script { ...@@ -308,7 +308,7 @@ abstract contract Deployer is Script {
/// @notice Builds the fully qualified name of a contract. Assumes that the /// @notice Builds the fully qualified name of a contract. Assumes that the
/// file name is the same as the contract name but strips semver for the file name. /// file name is the same as the contract name but strips semver for the file name.
function _getFullyQualifiedName(string memory _name) internal pure returns (string memory) { function _getFullyQualifiedName(string memory _name) internal returns (string memory) {
string memory sanitized = _stripSemver(_name); string memory sanitized = _stripSemver(_name);
return string.concat(sanitized, ".sol:", _name); return string.concat(sanitized, ".sol:", _name);
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment