docs: remove mention of godep (#22548)

This commit is contained in:
Marius van der Wijden 2021-03-22 13:41:37 +01:00 committed by GitHub
parent 6ac69c8c06
commit b7f6de8b4c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -46,12 +46,12 @@ as even a tiny change in Solidity can be painful to port over to Go.
To avoid all this mess, the go-ethereum implementation introduces a source code generator
that can convert Ethereum ABI definitions into easy to use, type-safe Go packages. Assuming
you have a valid Go development environment set up, `godep` installed and the go-ethereum
you have a valid Go development environment set up and the go-ethereum
repository checked out correctly, you can build the generator with:
```
$ cd $GOPATH/src/github.com/ethereum/go-ethereum
$ godep go install ./cmd/abigen
$ make abigen
```
### Generating the bindings