1005 B
1005 B
Dependency Management
Dependencies are managed by Go modules. They should be managed automatically and additionally we vendor all dependencies into vendor/
. More on Go Modules.
Adding and updating a dependency
$ get get -u github.com/foo/bar
$ make vendor
- Commit changes.
Updating go-ethereum
Remember that we use our fork of go-ethereum. It is included in the list of dependencies (go.mod
) as a regular package: github.com/ethereum/go-ethereum v1.8.27
, however, at the bottom of go.mod
there is a replace directive. So, if you want to upgrade go-ethereum, these two lines need to be updated.
Committing changes
Make sure that you don't commit unnecessary changes to go.mod
and
go.sum
.
Common issues
- Relative imports and "Could not introduce package, as its subpackage does not contain usable Go code". See this comment for more information.