Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
N
nebula
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
exchain
nebula
Commits
1b4fda30
Unverified
Commit
1b4fda30
authored
Oct 31, 2024
by
Maurelian
Committed by
GitHub
Oct 31, 2024
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix: Make public DeployUtils lib functions internal (#12759)
parent
6f2058c4
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
3 deletions
+6
-3
DeployUtils.sol
packages/contracts-bedrock/scripts/libraries/DeployUtils.sol
+6
-3
No files found.
packages/contracts-bedrock/scripts/libraries/DeployUtils.sol
View file @
1b4fda30
...
@@ -279,7 +279,10 @@ library DeployUtils {
...
@@ -279,7 +279,10 @@ library DeployUtils {
/// @notice Builds an L1ChugSplashProxy with a dummy implementation.
/// @notice Builds an L1ChugSplashProxy with a dummy implementation.
/// @param _proxyImplName Name of the implementation contract.
/// @param _proxyImplName Name of the implementation contract.
function buildL1ChugSplashProxyWithImpl(string memory _proxyImplName) public returns (IL1ChugSplashProxy proxy_) {
function buildL1ChugSplashProxyWithImpl(string memory _proxyImplName)
internal
returns (IL1ChugSplashProxy proxy_)
{
proxy_ = IL1ChugSplashProxy(
proxy_ = IL1ChugSplashProxy(
create1({
create1({
_name: "L1ChugSplashProxy",
_name: "L1ChugSplashProxy",
...
@@ -299,7 +302,7 @@ library DeployUtils {
...
@@ -299,7 +302,7 @@ library DeployUtils {
IAddressManager _addressManager,
IAddressManager _addressManager,
string memory _proxyImplName
string memory _proxyImplName
)
)
public
internal
returns (IResolvedDelegateProxy proxy_)
returns (IResolvedDelegateProxy proxy_)
{
{
proxy_ = IResolvedDelegateProxy(
proxy_ = IResolvedDelegateProxy(
...
@@ -316,7 +319,7 @@ library DeployUtils {
...
@@ -316,7 +319,7 @@ library DeployUtils {
}
}
/// @notice Builds an AddressManager contract.
/// @notice Builds an AddressManager contract.
function buildAddressManager()
public
returns (IAddressManager addressManager_) {
function buildAddressManager()
internal
returns (IAddressManager addressManager_) {
addressManager_ = IAddressManager(
addressManager_ = IAddressManager(
create1({
create1({
_name: "AddressManager",
_name: "AddressManager",
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment