diff options
author | Felix Lange <fjl@twurst.com> | 2015-03-14 01:37:13 +0800 |
---|---|---|
committer | Felix Lange <fjl@twurst.com> | 2015-03-14 01:41:09 +0800 |
commit | 67f8f83a1ba2a4dbd0f6f2fd075bb440f5c420ad (patch) | |
tree | 881f9b225a906fee3765ec2733211af5e431b48c /cmd/ethereum/main.go | |
parent | e463479b6c7770e783a47aedcd07b02d3ee250b6 (diff) | |
download | go-tangerine-67f8f83a1ba2a4dbd0f6f2fd075bb440f5c420ad.tar go-tangerine-67f8f83a1ba2a4dbd0f6f2fd075bb440f5c420ad.tar.gz go-tangerine-67f8f83a1ba2a4dbd0f6f2fd075bb440f5c420ad.tar.bz2 go-tangerine-67f8f83a1ba2a4dbd0f6f2fd075bb440f5c420ad.tar.lz go-tangerine-67f8f83a1ba2a4dbd0f6f2fd075bb440f5c420ad.tar.xz go-tangerine-67f8f83a1ba2a4dbd0f6f2fd075bb440f5c420ad.tar.zst go-tangerine-67f8f83a1ba2a4dbd0f6f2fd075bb440f5c420ad.zip |
cmd/ethereum: add blocktest command
Diffstat (limited to 'cmd/ethereum/main.go')
-rw-r--r-- | cmd/ethereum/main.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cmd/ethereum/main.go b/cmd/ethereum/main.go index d31053fb1..bc515b583 100644 --- a/cmd/ethereum/main.go +++ b/cmd/ethereum/main.go @@ -53,6 +53,7 @@ func init() { app.Action = run app.HideVersion = true // we have a command to print the version app.Commands = []cli.Command{ + blocktestCmd, { Action: version, Name: "version", |