Skip to content
This repository has been archived by the owner on Jun 9, 2024. It is now read-only.

chore(eth): typo fix #1345

Merged
merged 3 commits into from
Dec 11, 2023
Merged
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 eth/core/chain.go
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ type blockchain struct {
processor core.Processor
validator core.Validator

// statedb is the state database that is used to mange state during transactions.
// statedb is the state database that is used to manage state during transactions.
statedb state.StateDB
// vmConfig is the configuration used to create the EVM.
vmConfig *vm.Config
Expand Down
2 changes: 1 addition & 1 deletion eth/core/precompile/factories.go
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ func NewStatelessFactory() *StatelessFactory {
return &StatelessFactory{}
}

// Build returns a stateless precompile container for the given base contract implememntation.
// Build returns a stateless precompile container for the given base contract implementation.
// This function will return an error if the given contract is not a stateless implementation.
//
// Build implements `AbstractFactory`.
Expand Down
2 changes: 1 addition & 1 deletion eth/eth.go
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ type (
// RegisterAPIs registers JSON-RPC handlers for the networking stack.
RegisterAPIs([]rpc.API)

// RegisterLifecycles registers objects to have their lifecycle manged by the stack.
// RegisterLifecycles registers objects to have their lifecycle managed by the stack.
RegisterLifecycle(node.Lifecycle)

// Start starts the networking stack.
Expand Down