diff options
author | Felix Lange <fjl@twurst.com> | 2016-08-30 01:22:34 +0800 |
---|---|---|
committer | Felix Lange <fjl@twurst.com> | 2016-08-30 01:25:05 +0800 |
commit | 1d7d1a3499d2901d02085cacf9bae5fb76b678f8 (patch) | |
tree | 3bfaa7e0dbad3ed4f218a38f183be56e485e55e0 /cmd/geth | |
parent | 969008dbb007bb3f05dd6f66b5a91cb38c21ab54 (diff) | |
download | dexon-1d7d1a3499d2901d02085cacf9bae5fb76b678f8.tar dexon-1d7d1a3499d2901d02085cacf9bae5fb76b678f8.tar.gz dexon-1d7d1a3499d2901d02085cacf9bae5fb76b678f8.tar.bz2 dexon-1d7d1a3499d2901d02085cacf9bae5fb76b678f8.tar.lz dexon-1d7d1a3499d2901d02085cacf9bae5fb76b678f8.tar.xz dexon-1d7d1a3499d2901d02085cacf9bae5fb76b678f8.tar.zst dexon-1d7d1a3499d2901d02085cacf9bae5fb76b678f8.zip |
contracts/release: move package release to contracts/
This change also deletes generator.go, moving the only interesting line
in it into release.go. The binding has been regenerated with abigen from
develop and solc v0.3.6.
Diffstat (limited to 'cmd/geth')
-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" ) |