mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-06-12 01:41:36 +00:00
core/types: fix typo in comment (#25249)
This commit is contained in:
parent
926b3e08ba
commit
e394d01f2a
1 changed files with 1 additions and 1 deletions
|
|
@ -31,7 +31,7 @@ var hasherPool = sync.Pool{
|
||||||
New: func() interface{} { return sha3.NewLegacyKeccak256() },
|
New: func() interface{} { return sha3.NewLegacyKeccak256() },
|
||||||
}
|
}
|
||||||
|
|
||||||
// deriveBufferPool holds temporary encoder buffers for DeriveSha and TX encoding.
|
// encodeBufferPool holds temporary encoder buffers for DeriveSha and TX encoding.
|
||||||
var encodeBufferPool = sync.Pool{
|
var encodeBufferPool = sync.Pool{
|
||||||
New: func() interface{} { return new(bytes.Buffer) },
|
New: func() interface{} { return new(bytes.Buffer) },
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue