From b7f6de8b4c7ed29cd1b9e4035765220ac2214073 Mon Sep 17 00:00:00 2001 From: Marius van der Wijden Date: Mon, 22 Mar 2021 13:41:37 +0100 Subject: [PATCH] docs: remove mention of godep (#22548) --- docs/_dapp/native-bindings.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/_dapp/native-bindings.md b/docs/_dapp/native-bindings.md index 2766c27ffc..c8068207a1 100644 --- a/docs/_dapp/native-bindings.md +++ b/docs/_dapp/native-bindings.md @@ -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