@@ -73,8 +73,8 @@ func makeTestDeployerWithNonceAssignment(backend simulated.Client) func(input, d
7373 return bind .DeployerWithNonceAssignment (bind .NewKeyedTransactor (testKey , chainId ), backend )
7474}
7575
76- // test that deploying a contract with library dependencies works,
77- // verifying by calling method on the deployed contract.
76+ // TestDeploymentLibraries tests that deploying a contract with library
77+ // dependencies works, verifying by calling method on the deployed contract.
7878func TestDeploymentLibraries (t * testing.T ) {
7979 bindBackend , err := testSetup ()
8080 if err != nil {
@@ -117,8 +117,8 @@ func TestDeploymentLibraries(t *testing.T) {
117117 }
118118}
119119
120- // Same as TestDeployment. However, stagger the deployments with overrides:
121- // first deploy the library deps and then the contract.
120+ // TestDeploymentWithOverrides is same as TestDeployment. However, stagger the
121+ // deployments with overrides: first deploy the library deps and then the contract.
122122func TestDeploymentWithOverrides (t * testing.T ) {
123123 bindBackend , err := testSetup ()
124124 if err != nil {
@@ -185,7 +185,7 @@ func TestDeploymentWithOverrides(t *testing.T) {
185185 }
186186}
187187
188- // returns transaction auth to send a basic transaction from testAddr
188+ // defaultTxAuth returns transaction auth to send a basic tx from testAddr
189189func defaultTxAuth () * bind.TransactOpts {
190190 signer := types .LatestSigner (params .AllDevChainProtocolChanges )
191191 opts := & bind.TransactOpts {
0 commit comments