Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion core/txpool/blobpool/blobpool_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -1087,7 +1087,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)
Expand Down
2 changes: 1 addition & 1 deletion core/txpool/legacypool/legacypool_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -2703,7 +2703,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,
Expand Down
2 changes: 1 addition & 1 deletion core/types/tx_setcode.go
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,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) {
Expand Down
2 changes: 1 addition & 1 deletion docs/cli/snapshot_prune-block.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ The ```bor snapshot prune-block``` command will prune historical blockchain data

The brief workflow as below:

1. backup the the number of specified number of blocks backward in original ancientdb into new ancient_backup,
1. backup the number of specified number of blocks backward in original ancientdb into new ancient_backup,
2. then delete the original ancientdb dir and rename the ancient_backup to original one for replacement,
3. finally assemble the statedb and new ancientdb together.

Expand Down
2 changes: 1 addition & 1 deletion internal/cli/snapshot.go
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ func (c *PruneBlockCommand) MarkDown() string {
`
The brief workflow as below:

1. backup the the number of specified number of blocks backward in original ancientdb into new ancient_backup,
1. backup the number of specified number of blocks backward in original ancientdb into new ancient_backup,
2. then delete the original ancientdb dir and rename the ancient_backup to original one for replacement,
3. finally assemble the statedb and new ancientdb together.

Expand Down