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
// 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