les, eth: fix typo in comment (#27369)

This commit is contained in:
ucwong
2023-05-30 14:55:03 +02:00
committed by GitHub
parent d789c68b66
commit 560dceb58e
2 changed files with 4 additions and 4 deletions
+2 -2
View File
@@ -31,12 +31,12 @@ func NewEthereumAPI(e *Ethereum) *EthereumAPI {
return &EthereumAPI{e}
}
// Etherbase is the address that mining rewards will be send to.
// Etherbase is the address that mining rewards will be sent to.
func (api *EthereumAPI) Etherbase() (common.Address, error) {
return api.e.Etherbase()
}
// Coinbase is the address that mining rewards will be send to (alias for Etherbase).
// Coinbase is the address that mining rewards will be sent to (alias for Etherbase).
func (api *EthereumAPI) Coinbase() (common.Address, error) {
return api.Etherbase()
}