Skip to content
This repository has been archived by the owner on Nov 19, 2022. It is now read-only.

Commit

Permalink
Merge pull request #13 from Trabing/patch-3
Browse files Browse the repository at this point in the history
Add missing word
  • Loading branch information
miguelmota authored Nov 16, 2018
2 parents 7dfb4df + 1668a89 commit 034ba1f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion en/accounts/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ description: Tutorial on how to load an Ethereum account with Go.

Accounts on Ethereum are either wallet addresses or smart contract addresses. They look like `0x71c7656ec7ab88b098defb751b7401b5f6d8976f` and they're what you use for sending ETH to another user and also are used for referring to a smart contract on the blockchain when needing to interact with it. They are unique and are derived from a private key. We'll go more in depth into private/public key pairs in later sections.

In order to use account addresses with go-ethereum, you must first convert them the go-ethereum `common.Address` type.
In order to use account addresses with go-ethereum, you must first convert them to the go-ethereum `common.Address` type.

```go
address := common.HexToAddress("0x71c7656ec7ab88b098defb751b7401b5f6d8976f")
Expand Down

0 comments on commit 034ba1f

Please sign in to comment.