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 avalanchego/api/server/server.go
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ type server struct {
log logging.Logger
// generates new logs for chains to write to
factory logging.Factory
// points the the router handlers
// points the router handlers
handler http.Handler
// Listens for HTTP traffic on this address
listenHost string
Expand Down
2 changes: 1 addition & 1 deletion avalanchego/chains/atomic/state.go
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ func (s *state) SetValue(e *Element) error {
//
// This implies that chains interacting with shared memory must be able to
// generate their chain state without actually performing the read of shared
// memory. Shared memory should only be used to verify that the the transition
// memory. Shared memory should only be used to verify that the transition
// being performed is valid. That ensures that such verification can be skipped
// during bootstrapping. It is up to the chain to ensure this based on the
// current engine state.
Expand Down
2 changes: 1 addition & 1 deletion avalanchego/database/test_database.go
Original file line number Diff line number Diff line change
Expand Up @@ -700,7 +700,7 @@ func TestIterator(t *testing.T, db Database) {
}
}

// TestIteratorStart tests to make sure the the iterator can be configured to
// TestIteratorStart tests to make sure the iterator can be configured to
// start mid way through the database.
func TestIteratorStart(t *testing.T, db Database) {
key1 := []byte("hello1")
Expand Down
2 changes: 1 addition & 1 deletion coreth/plugin/evm/atomic_trie_iterator.go
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ func (a *atomicTrieIterator) Next() bool {
return false
}

// The value in the iterator should be the atomic requests serialized the the codec.
// The value in the iterator should be the atomic requests serialized the codec.
requests := new(atomic.Requests)
if _, err = a.codec.Unmarshal(a.trieIterator.Value, requests); err != nil {
a.resetFields(err)
Expand Down