Commit aee1d2dc authored by Mark Tyneway's avatar Mark Tyneway

state-surgery: fix naming

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