diff options
| author | obscuren <geffobscura@gmail.com> | 2015-03-10 18:04:11 +0800 |
|---|---|---|
| committer | obscuren <geffobscura@gmail.com> | 2015-03-10 18:04:11 +0800 |
| commit | 05c9351659e0482aeb29f80903286aefc671f0c5 (patch) | |
| tree | 56132f55a3f826ce852c5d053c7e8984932e7878 /cmd/blocktest/flags.go | |
| parent | 0db4a0e898d09ffa7b6b1289e9a334edc0001cfa (diff) | |
| parent | 80985f97da8174576ee227909035a364af2fd6c9 (diff) | |
| download | dexon-05c9351659e0482aeb29f80903286aefc671f0c5.tar dexon-05c9351659e0482aeb29f80903286aefc671f0c5.tar.gz dexon-05c9351659e0482aeb29f80903286aefc671f0c5.tar.bz2 dexon-05c9351659e0482aeb29f80903286aefc671f0c5.tar.lz dexon-05c9351659e0482aeb29f80903286aefc671f0c5.tar.xz dexon-05c9351659e0482aeb29f80903286aefc671f0c5.tar.zst dexon-05c9351659e0482aeb29f80903286aefc671f0c5.zip | |
Merge branch 'accounts-integration' of https://github.com/fjl/go-ethereum into fjl-accounts-integration
Diffstat (limited to 'cmd/blocktest/flags.go')
| -rw-r--r-- | cmd/blocktest/flags.go | 41 |
1 files changed, 0 insertions, 41 deletions
diff --git a/cmd/blocktest/flags.go b/cmd/blocktest/flags.go deleted file mode 100644 index c811e5b85..000000000 --- a/cmd/blocktest/flags.go +++ /dev/null @@ -1,41 +0,0 @@ -/* - This file is part of go-ethereum - - go-ethereum is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. - - go-ethereum is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with go-ethereum. If not, see <http://www.gnu.org/licenses/>. -*/ -/** - * @authors - * Gustav Simonsson <gustav.simonsson@gmail.com> - */ -package main - -import ( - "flag" - "fmt" - "os" -) - -var ( - TestFile string -) - -func Init() { - flag.Usage = func() { - fmt.Fprintf(os.Stderr, "%s <testfile>\n", os.Args[0]) - flag.PrintDefaults() - } - flag.Parse() - - TestFile = flag.Arg(0) -} |
