diff options
author | Felix Lange <fjl@twurst.com> | 2016-08-31 21:32:13 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-08-31 21:32:13 +0800 |
commit | 1f58b2d084b65eaec9aa2c2ecb1d3aae50d894b3 (patch) | |
tree | a8974883e266a1acb7410d53880e9fa1d9994ab6 /cmd/geth/main.go | |
parent | 6903fa2d47bdac70f3134947ba61690da2ddbf32 (diff) | |
parent | 1d7d1a3499d2901d02085cacf9bae5fb76b678f8 (diff) | |
download | dexon-1f58b2d084b65eaec9aa2c2ecb1d3aae50d894b3.tar dexon-1f58b2d084b65eaec9aa2c2ecb1d3aae50d894b3.tar.gz dexon-1f58b2d084b65eaec9aa2c2ecb1d3aae50d894b3.tar.bz2 dexon-1f58b2d084b65eaec9aa2c2ecb1d3aae50d894b3.tar.lz dexon-1f58b2d084b65eaec9aa2c2ecb1d3aae50d894b3.tar.xz dexon-1f58b2d084b65eaec9aa2c2ecb1d3aae50d894b3.tar.zst dexon-1f58b2d084b65eaec9aa2c2ecb1d3aae50d894b3.zip |
Merge pull request #2962 from fjl/release-move
contracts/release: move package release to contracts/
Diffstat (limited to 'cmd/geth/main.go')
-rw-r--r-- | cmd/geth/main.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/geth/main.go b/cmd/geth/main.go index 620ff3178..82eae244d 100644 --- a/cmd/geth/main.go +++ b/cmd/geth/main.go @@ -32,6 +32,7 @@ import ( "github.com/ethereum/go-ethereum/cmd/utils" "github.com/ethereum/go-ethereum/common" "github.com/ethereum/go-ethereum/console" + "github.com/ethereum/go-ethereum/contracts/release" "github.com/ethereum/go-ethereum/core" "github.com/ethereum/go-ethereum/core/state" "github.com/ethereum/go-ethereum/eth" @@ -42,7 +43,6 @@ import ( "github.com/ethereum/go-ethereum/metrics" "github.com/ethereum/go-ethereum/node" "github.com/ethereum/go-ethereum/params" - "github.com/ethereum/go-ethereum/release" "github.com/ethereum/go-ethereum/rlp" "gopkg.in/urfave/cli.v1" ) |