Skip to content

Commit 1843f27

Browse files
authored
all: fix some typos in comments and names (#31023)
1 parent 37c0e69 commit 1843f27

File tree

27 files changed

+79
-52
lines changed

27 files changed

+79
-52
lines changed

accounts/accounts.go

+3-1
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,9 @@ const (
214214
// of starting any background processes such as automatic key derivation.
215215
WalletOpened
216216

217-
// WalletDropped
217+
// WalletDropped is fired when a wallet is removed or disconnected, either via USB
218+
// or due to a filesystem event in the keystore. This event indicates that the wallet
219+
// is no longer available for operations.
218220
WalletDropped
219221
)
220222

cmd/devp2p/internal/ethtest/protocol.go

+1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
//
1414
// You should have received a copy of the GNU General Public License
1515
// along with go-ethereum. If not, see <http://www.gnu.org/licenses/>.
16+
1617
package ethtest
1718

1819
import (

cmd/devp2p/internal/v4test/discv4tests.go

+9-9
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ func PingExtraData(t *utesting.T) {
194194
}
195195
}
196196

197-
// This test sends a PING packet with additional data and wrong 'from' field
197+
// PingExtraDataWrongFrom sends a PING packet with additional data and wrong 'from' field
198198
// and expects a PONG response.
199199
func PingExtraDataWrongFrom(t *utesting.T) {
200200
te := newTestEnv(Remote, Listen1, Listen2)
@@ -215,7 +215,7 @@ func PingExtraDataWrongFrom(t *utesting.T) {
215215
}
216216
}
217217

218-
// This test sends a PING packet with an expiration in the past.
218+
// PingPastExpiration sends a PING packet with an expiration in the past.
219219
// The remote node should not respond.
220220
func PingPastExpiration(t *utesting.T) {
221221
te := newTestEnv(Remote, Listen1, Listen2)
@@ -234,7 +234,7 @@ func PingPastExpiration(t *utesting.T) {
234234
}
235235
}
236236

237-
// This test sends an invalid packet. The remote node should not respond.
237+
// WrongPacketType sends an invalid packet. The remote node should not respond.
238238
func WrongPacketType(t *utesting.T) {
239239
te := newTestEnv(Remote, Listen1, Listen2)
240240
defer te.close()
@@ -252,7 +252,7 @@ func WrongPacketType(t *utesting.T) {
252252
}
253253
}
254254

255-
// This test verifies that the default behaviour of ignoring 'from' fields is unaffected by
255+
// BondThenPingWithWrongFrom verifies that the default behaviour of ignoring 'from' fields is unaffected by
256256
// the bonding process. After bonding, it pings the target with a different from endpoint.
257257
func BondThenPingWithWrongFrom(t *utesting.T) {
258258
te := newTestEnv(Remote, Listen1, Listen2)
@@ -289,7 +289,7 @@ waitForPong:
289289
}
290290
}
291291

292-
// This test just sends FINDNODE. The remote node should not reply
292+
// FindnodeWithoutEndpointProof sends FINDNODE. The remote node should not reply
293293
// because the endpoint proof has not completed.
294294
func FindnodeWithoutEndpointProof(t *utesting.T) {
295295
te := newTestEnv(Remote, Listen1, Listen2)
@@ -332,7 +332,7 @@ func BasicFindnode(t *utesting.T) {
332332
}
333333
}
334334

335-
// This test sends an unsolicited NEIGHBORS packet after the endpoint proof, then sends
335+
// UnsolicitedNeighbors sends an unsolicited NEIGHBORS packet after the endpoint proof, then sends
336336
// FINDNODE to read the remote table. The remote node should not return the node contained
337337
// in the unsolicited NEIGHBORS packet.
338338
func UnsolicitedNeighbors(t *utesting.T) {
@@ -373,7 +373,7 @@ func UnsolicitedNeighbors(t *utesting.T) {
373373
}
374374
}
375375

376-
// This test sends FINDNODE with an expiration timestamp in the past.
376+
// FindnodePastExpiration sends FINDNODE with an expiration timestamp in the past.
377377
// The remote node should not respond.
378378
func FindnodePastExpiration(t *utesting.T) {
379379
te := newTestEnv(Remote, Listen1, Listen2)
@@ -426,7 +426,7 @@ func bond(t *utesting.T, te *testenv) {
426426
}
427427
}
428428

429-
// This test attempts to perform a traffic amplification attack against a
429+
// FindnodeAmplificationInvalidPongHash attempts to perform a traffic amplification attack against a
430430
// 'victim' endpoint using FINDNODE. In this attack scenario, the attacker
431431
// attempts to complete the endpoint proof non-interactively by sending a PONG
432432
// with mismatching reply token from the 'victim' endpoint. The attack works if
@@ -478,7 +478,7 @@ func FindnodeAmplificationInvalidPongHash(t *utesting.T) {
478478
}
479479
}
480480

481-
// This test attempts to perform a traffic amplification attack using FINDNODE.
481+
// FindnodeAmplificationWrongIP attempts to perform a traffic amplification attack using FINDNODE.
482482
// The attack works if the remote node does not verify the IP address of FINDNODE
483483
// against the endpoint verification proof done by PING/PONG.
484484
func FindnodeAmplificationWrongIP(t *utesting.T) {

consensus/clique/snapshot_test.go

-1
Original file line numberDiff line numberDiff line change
@@ -467,7 +467,6 @@ func (tt *cliqueTest) run(t *testing.T) {
467467
for j := 0; j < len(batches)-1; j++ {
468468
if k, err := chain.InsertChain(batches[j]); err != nil {
469469
t.Fatalf("failed to import batch %d, block %d: %v", j, k, err)
470-
break
471470
}
472471
}
473472
if _, err = chain.InsertChain(batches[len(batches)-1]); err != tt.failure {

core/tracing/hooks.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -293,7 +293,7 @@ const (
293293
GasChangeCallLeftOverRefunded GasChangeReason = 7
294294
// GasChangeCallContractCreation is the amount of gas that will be burned for a CREATE.
295295
GasChangeCallContractCreation GasChangeReason = 8
296-
// GasChangeContractCreation is the amount of gas that will be burned for a CREATE2.
296+
// GasChangeCallContractCreation2 is the amount of gas that will be burned for a CREATE2.
297297
GasChangeCallContractCreation2 GasChangeReason = 9
298298
// GasChangeCallCodeStorage is the amount of gas that will be charged for code storage.
299299
GasChangeCallCodeStorage GasChangeReason = 10

core/txpool/legacypool/legacypool2_test.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -162,12 +162,12 @@ func TestTransactionZAttack(t *testing.T) {
162162
var ivpendingNum int
163163
pendingtxs, _ := pool.Content()
164164
for account, txs := range pendingtxs {
165-
cur_balance := new(big.Int).Set(pool.currentState.GetBalance(account).ToBig())
165+
curBalance := new(big.Int).Set(pool.currentState.GetBalance(account).ToBig())
166166
for _, tx := range txs {
167-
if cur_balance.Cmp(tx.Value()) <= 0 {
167+
if curBalance.Cmp(tx.Value()) <= 0 {
168168
ivpendingNum++
169169
} else {
170-
cur_balance.Sub(cur_balance, tx.Value())
170+
curBalance.Sub(curBalance, tx.Value())
171171
}
172172
}
173173
}

core/types/deposit.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ const (
2424
depositRequestSize = 192
2525
)
2626

27-
// UnpackIntoDeposit unpacks a serialized DepositEvent.
27+
// DepositLogToRequest unpacks a serialized DepositEvent.
2828
func DepositLogToRequest(data []byte) ([]byte, error) {
2929
if len(data) != 576 {
3030
return nil, fmt.Errorf("deposit wrong length: want 576, have %d", len(data))

core/vm/eof_validation.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -109,8 +109,8 @@ func validateCode(code []byte, section int, container *Container, jt *JumpTable,
109109
return nil, err
110110
}
111111
case RJUMPV:
112-
max_size := int(code[i+1])
113-
length := max_size + 1
112+
maxSize := int(code[i+1])
113+
length := maxSize + 1
114114
if len(code) <= i+length {
115115
return nil, fmt.Errorf("%w: jump table truncated, op %s, pos %d", errTruncatedImmediate, op, i)
116116
}
@@ -120,7 +120,7 @@ func validateCode(code []byte, section int, container *Container, jt *JumpTable,
120120
return nil, err
121121
}
122122
}
123-
i += 2 * max_size
123+
i += 2 * maxSize
124124
case CALLF:
125125
arg, _ := parseUint16(code[i+1:])
126126
if arg >= len(container.types) {

core/vm/program/program.go

+3-2
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
// - There are not package guarantees. We might iterate heavily on this package, and do backwards-incompatible changes without warning
2020
// - There are no quality-guarantees. These utilities may produce evm-code that is non-functional. YMMV.
2121
// - There are no stability-guarantees. The utility will `panic` if the inputs do not align / make sense.
22+
2223
package program
2324

2425
import (
@@ -204,7 +205,7 @@ func (p *Program) StaticCall(gas *uint256.Int, address, inOffset, inSize, outOff
204205
return p.Op(vm.STATICCALL)
205206
}
206207

207-
// StaticCall is a convenience function to make a callcode. If 'gas' is nil, the opcode GAS will
208+
// CallCode is a convenience function to make a callcode. If 'gas' is nil, the opcode GAS will
208209
// be used to provide all gas.
209210
func (p *Program) CallCode(gas *uint256.Int, address, value, inOffset, inSize, outOffset, outSize any) *Program {
210211
if outOffset == outSize && inSize == outSize && inOffset == outSize {
@@ -263,7 +264,7 @@ func (p *Program) InputAddressToStack(inputOffset uint32) *Program {
263264
return p.Op(vm.AND)
264265
}
265266

266-
// MStore stores the provided data (into the memory area starting at memStart).
267+
// Mstore stores the provided data (into the memory area starting at memStart).
267268
func (p *Program) Mstore(data []byte, memStart uint32) *Program {
268269
var idx = 0
269270
// We need to store it in chunks of 32 bytes

crypto/blake2b/blake2b.go

+4-4
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,13 @@ import (
2323
)
2424

2525
const (
26-
// The blocksize of BLAKE2b in bytes.
26+
// BlockSize the blocksize of BLAKE2b in bytes.
2727
BlockSize = 128
28-
// The hash size of BLAKE2b-512 in bytes.
28+
// Size the hash size of BLAKE2b-512 in bytes.
2929
Size = 64
30-
// The hash size of BLAKE2b-384 in bytes.
30+
// Size384 the hash size of BLAKE2b-384 in bytes.
3131
Size384 = 48
32-
// The hash size of BLAKE2b-256 in bytes.
32+
// Size256 the hash size of BLAKE2b-256 in bytes.
3333
Size256 = 32
3434
)
3535

crypto/bn256/gnark/pairing.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import (
44
"github.com/consensys/gnark-crypto/ecc/bn254"
55
)
66

7-
// Computes the following relation: ∏ᵢ e(Pᵢ, Qᵢ) =? 1
7+
// PairingCheck computes the following relation: ∏ᵢ e(Pᵢ, Qᵢ) =? 1
88
//
99
// To explain why gnark returns a (bool, error):
1010
//

crypto/ecies/ecies.go

+6-6
Original file line numberDiff line numberDiff line change
@@ -60,12 +60,12 @@ type PublicKey struct {
6060
Params *ECIESParams
6161
}
6262

63-
// Export an ECIES public key as an ECDSA public key.
63+
// ExportECDSA exports an ECIES public key as an ECDSA public key.
6464
func (pub *PublicKey) ExportECDSA() *ecdsa.PublicKey {
6565
return &ecdsa.PublicKey{Curve: pub.Curve, X: pub.X, Y: pub.Y}
6666
}
6767

68-
// Import an ECDSA public key as an ECIES public key.
68+
// ImportECDSAPublic imports an ECDSA public key as an ECIES public key.
6969
func ImportECDSAPublic(pub *ecdsa.PublicKey) *PublicKey {
7070
return &PublicKey{
7171
X: pub.X,
@@ -81,20 +81,20 @@ type PrivateKey struct {
8181
D *big.Int
8282
}
8383

84-
// Export an ECIES private key as an ECDSA private key.
84+
// ExportECDSA exports an ECIES private key as an ECDSA private key.
8585
func (prv *PrivateKey) ExportECDSA() *ecdsa.PrivateKey {
8686
pub := &prv.PublicKey
8787
pubECDSA := pub.ExportECDSA()
8888
return &ecdsa.PrivateKey{PublicKey: *pubECDSA, D: prv.D}
8989
}
9090

91-
// Import an ECDSA private key as an ECIES private key.
91+
// ImportECDSA imports an ECDSA private key as an ECIES private key.
9292
func ImportECDSA(prv *ecdsa.PrivateKey) *PrivateKey {
9393
pub := ImportECDSAPublic(&prv.PublicKey)
9494
return &PrivateKey{*pub, prv.D}
9595
}
9696

97-
// Generate an elliptic curve public / private keypair. If params is nil,
97+
// GenerateKey generates an elliptic curve public / private keypair. If params is nil,
9898
// the recommended default parameters for the key will be chosen.
9999
func GenerateKey(rand io.Reader, curve elliptic.Curve, params *ECIESParams) (prv *PrivateKey, err error) {
100100
sk, err := ecdsa.GenerateKey(curve, rand)
@@ -119,7 +119,7 @@ func MaxSharedKeyLength(pub *PublicKey) int {
119119
return (pub.Curve.Params().BitSize + 7) / 8
120120
}
121121

122-
// ECDH key agreement method used to establish secret keys for encryption.
122+
// GenerateShared ECDH key agreement method used to establish secret keys for encryption.
123123
func (prv *PrivateKey) GenerateShared(pub *PublicKey, skLen, macLen int) (sk []byte, err error) {
124124
if prv.PublicKey.Curve != pub.Curve {
125125
return nil, ErrInvalidCurve

eth/tracers/dir.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ type Context struct {
3434
TxHash common.Hash // Hash of the transaction being traced (zero if dangling call)
3535
}
3636

37-
// The set of methods that must be exposed by a tracer
37+
// Tracer represents the set of methods that must be exposed by a tracer
3838
// for it to be available through the RPC interface.
3939
// This involves a method to retrieve results and one to
4040
// stop tracing.

eth/tracers/internal/util.go

+1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
//
1414
// You should have received a copy of the GNU Lesser General Public License
1515
// along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>.
16+
1617
package internal
1718

1819
import (

internal/era/builder.go

+2-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,8 @@
1212
// GNU General Public License for more details.
1313
//
1414
// You should have received a copy of the GNU General Public License
15-
// along with go-ethereum. If not, see <http://www.gnu.org/licenses/>.
15+
// along with go-ethereum. If not, see <http//www.gnu.org/licenses/>.
16+
1617
package era
1718

1819
import (

internal/jsre/jsre.go

+22-3
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,19 @@ type evalReq struct {
6767
done chan bool
6868
}
6969

70-
// runtime must be stopped with Stop() after use and cannot be used after stopping
70+
// New creates and initializes a new JavaScript runtime environment (JSRE).
71+
// The runtime is configured with the provided assetPath for loading scripts and
72+
// an output writer for logging or printing results.
73+
//
74+
// The returned JSRE must be stopped by calling Stop() after use to release resources.
75+
// Attempting to use the JSRE after stopping it will result in undefined behavior.
76+
//
77+
// Parameters:
78+
// - assetPath: The path to the directory containing script assets.
79+
// - output: The writer used for logging or printing runtime output.
80+
//
81+
// Returns:
82+
// - A pointer to the newly created JSRE instance.
7183
func New(assetPath string, output io.Writer) *JSRE {
7284
re := &JSRE{
7385
assetPath: assetPath,
@@ -251,8 +263,15 @@ func (re *JSRE) Stop(waitForCallbacks bool) {
251263
}
252264
}
253265

254-
// Exec(file) loads and runs the contents of a file
255-
// if a relative path is given, the jsre's assetPath is used
266+
// Exec loads and executes the contents of a JavaScript file.
267+
// If a relative path is provided, the file is resolved relative to the JSRE's assetPath.
268+
// The file is read, compiled, and executed in the JSRE's runtime environment.
269+
//
270+
// Parameters:
271+
// - file: The path to the JavaScript file to execute. Can be an absolute path or relative to assetPath.
272+
//
273+
// Returns:
274+
// - error: An error if the file cannot be read, compiled, or executed.
256275
func (re *JSRE) Exec(file string) error {
257276
code, err := os.ReadFile(common.AbsolutePath(re.assetPath, file))
258277
if err != nil {

internal/reexec/reexec.go

+1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
// we require because of the forking limitations of using Go. Handlers can be
88
// registered with a name and the argv 0 of the exec of the binary will be used
99
// to find and execute custom init paths.
10+
1011
package reexec
1112

1213
import (

metrics/exp/exp.go

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
// Hook go-metrics into expvar
22
// on any /debug/metrics request, load all vars from the registry into expvar, and execute regular expvar handler
3+
34
package exp
45

56
import (

metrics/gauge_info.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ func NewRegisteredGaugeInfo(name string, r Registry) *GaugeInfo {
3939
return c
4040
}
4141

42-
// gaugeInfoSnapshot is a read-only copy of another GaugeInfo.
42+
// GaugeInfoSnapshot is a read-only copy of another GaugeInfo.
4343
type GaugeInfoSnapshot GaugeInfoValue
4444

4545
// Value returns the value at the time the snapshot was taken.

metrics/log.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ func Log(r Registry, freq time.Duration, l Logger) {
1212
LogScaled(r, freq, time.Nanosecond, l)
1313
}
1414

15-
// Output each metric in the given registry periodically using the given
15+
// LogScaled outputs each metric in the given registry periodically using the given
1616
// logger. Print timings in `scale` units (eg time.Millisecond) rather than nanos.
1717
func LogScaled(r Registry, freq time.Duration, scale time.Duration, l Logger) {
1818
du := float64(scale)

metrics/metrics.go

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
// <https://github.com/rcrowley/go-metrics>
44
//
55
// Coda Hale's original work: <https://github.com/codahale/metrics>
6+
67
package metrics
78

89
import (

metrics/resetting_timer.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -53,14 +53,14 @@ func (t *ResettingTimer) Snapshot() *ResettingTimerSnapshot {
5353
return snapshot
5454
}
5555

56-
// Record the duration of the execution of the given function.
56+
// Time records the duration of the execution of the given function.
5757
func (t *ResettingTimer) Time(f func()) {
5858
ts := time.Now()
5959
f()
6060
t.Update(time.Since(ts))
6161
}
6262

63-
// Record the duration of an event.
63+
// Update records the duration of an event.
6464
func (t *ResettingTimer) Update(d time.Duration) {
6565
if !metricsEnabled {
6666
return
@@ -71,7 +71,7 @@ func (t *ResettingTimer) Update(d time.Duration) {
7171
t.sum += int64(d)
7272
}
7373

74-
// Record the duration of an event that started at a time and ends now.
74+
// UpdateSince records the duration of an event that started at a time and ends now.
7575
func (t *ResettingTimer) UpdateSince(ts time.Time) {
7676
t.Update(time.Since(ts))
7777
}

0 commit comments

Comments
 (0)