diff options
author | obscuren <geffobscura@gmail.com> | 2015-03-27 04:27:52 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2015-03-27 04:27:52 +0800 |
commit | b0b0939879b9fb8453ec1c8fa2ceb522e56df3bc (patch) | |
tree | 5c506d98a654f387cd15e2c4aee7f24be5305f91 /cmd | |
parent | 829240c3252d9da09c9000e42b0686425a313e8b (diff) | |
download | dexon-b0b0939879b9fb8453ec1c8fa2ceb522e56df3bc.tar.gz dexon-b0b0939879b9fb8453ec1c8fa2ceb522e56df3bc.tar.zst dexon-b0b0939879b9fb8453ec1c8fa2ceb522e56df3bc.zip |
renamed ethereum => geth
Diffstat (limited to 'cmd')
-rw-r--r-- | cmd/geth/admin.go (renamed from cmd/ethereum/admin.go) | 0 | ||||
-rw-r--r-- | cmd/geth/blocktest.go (renamed from cmd/ethereum/blocktest.go) | 0 | ||||
-rw-r--r-- | cmd/geth/js.go (renamed from cmd/ethereum/js.go) | 0 | ||||
-rw-r--r-- | cmd/geth/js_test.go (renamed from cmd/ethereum/js_test.go) | 0 | ||||
-rw-r--r-- | cmd/geth/main.go (renamed from cmd/ethereum/main.go) | 10 |
5 files changed, 5 insertions, 5 deletions
diff --git a/cmd/ethereum/admin.go b/cmd/geth/admin.go index 139395dad..139395dad 100644 --- a/cmd/ethereum/admin.go +++ b/cmd/geth/admin.go diff --git a/cmd/ethereum/blocktest.go b/cmd/geth/blocktest.go index d9cdfa83f..d9cdfa83f 100644 --- a/cmd/ethereum/blocktest.go +++ b/cmd/geth/blocktest.go diff --git a/cmd/ethereum/js.go b/cmd/geth/js.go index 8e88a1c54..8e88a1c54 100644 --- a/cmd/ethereum/js.go +++ b/cmd/geth/js.go diff --git a/cmd/ethereum/js_test.go b/cmd/geth/js_test.go index 5b962f621..5b962f621 100644 --- a/cmd/ethereum/js_test.go +++ b/cmd/geth/js_test.go diff --git a/cmd/ethereum/main.go b/cmd/geth/main.go index 42321e8bc..da505218b 100644 --- a/cmd/ethereum/main.go +++ b/cmd/geth/main.go @@ -42,7 +42,7 @@ import ( ) const ( - ClientIdentifier = "Ethereum(G)" + ClientIdentifier = "Geth" Version = "0.9.4" ) @@ -183,9 +183,9 @@ Use "ethereum dump 0" to dump the genesis block. { Action: console, Name: "console", - Usage: `Ethereum Console: interactive JavaScript environment`, + Usage: `Geth Console: interactive JavaScript environment`, Description: ` -Console is an interactive shell for the Ethereum JavaScript runtime environment +The Geth console is an interactive shell for the JavaScript runtime environment which exposes a node admin interface as well as the DAPP JavaScript API. See https://github.com/ethereum/go-ethereum/wiki/Frontier-Console `, @@ -193,9 +193,9 @@ See https://github.com/ethereum/go-ethereum/wiki/Frontier-Console { Action: execJSFiles, Name: "js", - Usage: `executes the given JavaScript files in the Ethereum JavaScript VM`, + Usage: `executes the given JavaScript files in the Geth JavaScript VM`, Description: ` -The Ethereum JavaScript VM exposes a node admin interface as well as the DAPP +The JavaScript VM exposes a node admin interface as well as the DAPP JavaScript API. See https://github.com/ethereum/go-ethereum/wiki/Javascipt-Console `, }, |