diff options
author | obscuren <geffobscura@gmail.com> | 2014-06-16 17:15:08 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2014-06-16 17:15:08 +0800 |
commit | 3744151359a7ff352fde5be39905ecb3d22c9d28 (patch) | |
tree | 6d38e2c2641fafa4db9ed17abc2e33621400217d /ethereal | |
parent | 7ab735eb02f92a7bfc67dff2515eadea18036844 (diff) | |
download | go-tangerine-3744151359a7ff352fde5be39905ecb3d22c9d28.tar go-tangerine-3744151359a7ff352fde5be39905ecb3d22c9d28.tar.gz go-tangerine-3744151359a7ff352fde5be39905ecb3d22c9d28.tar.bz2 go-tangerine-3744151359a7ff352fde5be39905ecb3d22c9d28.tar.lz go-tangerine-3744151359a7ff352fde5be39905ecb3d22c9d28.tar.xz go-tangerine-3744151359a7ff352fde5be39905ecb3d22c9d28.tar.zst go-tangerine-3744151359a7ff352fde5be39905ecb3d22c9d28.zip |
Removed init fees
Diffstat (limited to 'ethereal')
-rw-r--r-- | ethereal/ethereum.go | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/ethereal/ethereum.go b/ethereal/ethereum.go index 7ace16760..0db1fa4cd 100644 --- a/ethereal/ethereum.go +++ b/ethereal/ethereum.go @@ -3,7 +3,6 @@ package main import ( "fmt" "github.com/ethereum/eth-go" - "github.com/ethereum/eth-go/ethchain" "github.com/ethereum/eth-go/ethutil" "github.com/ethereum/go-ethereum/ethereal/ui" "github.com/ethereum/go-ethereum/utils" @@ -40,8 +39,6 @@ func main() { runtime.GOMAXPROCS(runtime.NumCPU()) - ethchain.InitFees() - g, err := globalconf.NewWithOptions(&globalconf.Options{ Filename: path.Join(ethutil.ApplicationFolder(Datadir), "conf.ini"), }) |