Commit 1f9e8834 authored by Mark Tyneway's avatar Mark Tyneway Committed by GitHub

Merge pull request #3265 from ethereum-optimism/ss/fix-naming

state-surgery: fix naming
parents fec22bfe aee1d2dc
......@@ -38,7 +38,7 @@ type DeploymentResults map[string]hexutil.Bytes
// pass in a config struct to this function that comes from
// a JSON file/cli flags and then populate the Deployment
// Args.
func OptimismBuild() (DeploymentResults, error) {
func BuildOptimism() (DeploymentResults, error) {
deployments := []Deployment{
{
Name: "GasPriceOracle",
......
......@@ -8,7 +8,7 @@ import (
)
func TestBuildOptimism(t *testing.T) {
results, err := immutables.OptimismBuild()
results, err := immutables.BuildOptimism()
require.Nil(t, err)
require.NotNil(t, results)
......
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