diff options
author | Jeffrey Wilcke <jeffrey@ethereum.org> | 2015-03-11 05:42:03 +0800 |
---|---|---|
committer | Jeffrey Wilcke <jeffrey@ethereum.org> | 2015-03-11 05:42:03 +0800 |
commit | 73171d18b9ecf7af7c194c0fe3030d3bfbb833e3 (patch) | |
tree | c2e9e274c64f431f03b9a6b8b3de22585c016027 /cmd/blocktest/flags.go | |
parent | 0542df941f57a75fa7b699089db1d9ae40e4ff71 (diff) | |
parent | 269cfbb8ace76ddc1f50dbd5b218c499308c8a5c (diff) | |
download | go-tangerine-73171d18b9ecf7af7c194c0fe3030d3bfbb833e3.tar go-tangerine-73171d18b9ecf7af7c194c0fe3030d3bfbb833e3.tar.gz go-tangerine-73171d18b9ecf7af7c194c0fe3030d3bfbb833e3.tar.bz2 go-tangerine-73171d18b9ecf7af7c194c0fe3030d3bfbb833e3.tar.lz go-tangerine-73171d18b9ecf7af7c194c0fe3030d3bfbb833e3.tar.xz go-tangerine-73171d18b9ecf7af7c194c0fe3030d3bfbb833e3.tar.zst go-tangerine-73171d18b9ecf7af7c194c0fe3030d3bfbb833e3.zip |
Merge pull request #447 from fjl/accounts-integration
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) -} |