aboutsummaryrefslogtreecommitdiffstats
path: root/cmd/utils/flags.go
diff options
context:
space:
mode:
authorFelix Lange <fjl@twurst.com>2016-08-30 01:22:34 +0800
committerFelix Lange <fjl@twurst.com>2016-08-30 01:25:05 +0800
commit1d7d1a3499d2901d02085cacf9bae5fb76b678f8 (patch)
tree3bfaa7e0dbad3ed4f218a38f183be56e485e55e0 /cmd/utils/flags.go
parent969008dbb007bb3f05dd6f66b5a91cb38c21ab54 (diff)
downloadgo-tangerine-1d7d1a3499d2901d02085cacf9bae5fb76b678f8.tar
go-tangerine-1d7d1a3499d2901d02085cacf9bae5fb76b678f8.tar.gz
go-tangerine-1d7d1a3499d2901d02085cacf9bae5fb76b678f8.tar.bz2
go-tangerine-1d7d1a3499d2901d02085cacf9bae5fb76b678f8.tar.lz
go-tangerine-1d7d1a3499d2901d02085cacf9bae5fb76b678f8.tar.xz
go-tangerine-1d7d1a3499d2901d02085cacf9bae5fb76b678f8.tar.zst
go-tangerine-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/utils/flags.go')
-rw-r--r--cmd/utils/flags.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/utils/flags.go b/cmd/utils/flags.go
index de953ff47..488e7fea2 100644
--- a/cmd/utils/flags.go
+++ b/cmd/utils/flags.go
@@ -33,6 +33,7 @@ import (
"github.com/ethereum/ethash"
"github.com/ethereum/go-ethereum/accounts"
"github.com/ethereum/go-ethereum/common"
+ "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/crypto"
@@ -47,7 +48,6 @@ import (
"github.com/ethereum/go-ethereum/p2p/nat"
"github.com/ethereum/go-ethereum/params"
"github.com/ethereum/go-ethereum/pow"
- "github.com/ethereum/go-ethereum/release"
"github.com/ethereum/go-ethereum/rpc"
"github.com/ethereum/go-ethereum/whisper"
"gopkg.in/urfave/cli.v1"