mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-21 12:16:44 +00:00
core, eth: remove duplicate 'the' in the comments
This commit is contained in:
parent
45832c9347
commit
3248bd81c5
4 changed files with 6 additions and 6 deletions
|
|
@ -1099,7 +1099,7 @@ func TestChangingSlotterSize(t *testing.T) {
|
|||
|
||||
// Write the two safely sized txs to store. note: although the store is
|
||||
// configured for a blob count of 6, it can also support around ~1mb of call
|
||||
// data - all this to say that we aren't using the the absolute largest shelf
|
||||
// data - all this to say that we aren't using the absolute largest shelf
|
||||
// available.
|
||||
store.Put(blob1)
|
||||
store.Put(blob2)
|
||||
|
|
@ -1202,7 +1202,7 @@ func TestBillyMigration(t *testing.T) {
|
|||
|
||||
// Write the two safely sized txs to store. note: although the store is
|
||||
// configured for a blob count of 6, it can also support around ~1mb of call
|
||||
// data - all this to say that we aren't using the the absolute largest shelf
|
||||
// data - all this to say that we aren't using the absolute largest shelf
|
||||
// available.
|
||||
store.Put(blob1)
|
||||
store.Put(blob2)
|
||||
|
|
@ -1832,7 +1832,7 @@ func TestGetBlobs(t *testing.T) {
|
|||
|
||||
// Write the two safely sized txs to store. note: although the store is
|
||||
// configured for a blob count of 6, it can also support around ~1mb of call
|
||||
// data - all this to say that we aren't using the the absolute largest shelf
|
||||
// data - all this to say that we aren't using the absolute largest shelf
|
||||
// available.
|
||||
store.Put(blob1)
|
||||
store.Put(blob2)
|
||||
|
|
|
|||
|
|
@ -2435,7 +2435,7 @@ func TestSetCodeTransactions(t *testing.T) {
|
|||
},
|
||||
},
|
||||
{
|
||||
// This test is analogous to the previous one, but the the replaced
|
||||
// This test is analogous to the previous one, but the replaced
|
||||
// transaction is self-sponsored.
|
||||
name: "allow-tx-from-replaced-self-sponsor-authority",
|
||||
pending: 3,
|
||||
|
|
|
|||
|
|
@ -114,7 +114,7 @@ func (a *SetCodeAuthorization) SigHash() common.Hash {
|
|||
})
|
||||
}
|
||||
|
||||
// Authority recovers the the authorizing account of an authorization.
|
||||
// Authority recovers the authorizing account of an authorization.
|
||||
func (a *SetCodeAuthorization) Authority() (common.Address, error) {
|
||||
sighash := a.SigHash()
|
||||
if !crypto.ValidateSignatureValues(a.V, a.R.ToBig(), a.S.ToBig(), true) {
|
||||
|
|
|
|||
|
|
@ -120,7 +120,7 @@ func (r *Receipt) decodeInnerList(s *rlp.Stream, readTxType, readBloom bool) err
|
|||
return s.ListEnd()
|
||||
}
|
||||
|
||||
// encodeForStorage produces the the storage encoding, i.e. the result matches
|
||||
// encodeForStorage produces the storage encoding, i.e. the result matches
|
||||
// the RLP encoding of types.ReceiptForStorage.
|
||||
func (r *Receipt) encodeForStorage(w *rlp.EncoderBuffer) {
|
||||
list := w.List()
|
||||
|
|
|
|||
Loading…
Reference in a new issue