diff options
author | zelig <viktor.tron@gmail.com> | 2015-03-16 23:49:39 +0800 |
---|---|---|
committer | zelig <viktor.tron@gmail.com> | 2015-03-16 23:49:39 +0800 |
commit | 73af0302bed5076260ac935e452064aee423934d (patch) | |
tree | 40a80e0a53c015c9988d8033f5da6b06413ad91b /cmd/ethereum/main.go | |
parent | b4060da9eb717f43346f24822f5b25c3385a8519 (diff) | |
download | dexon-73af0302bed5076260ac935e452064aee423934d.tar dexon-73af0302bed5076260ac935e452064aee423934d.tar.gz dexon-73af0302bed5076260ac935e452064aee423934d.tar.bz2 dexon-73af0302bed5076260ac935e452064aee423934d.tar.lz dexon-73af0302bed5076260ac935e452064aee423934d.tar.xz dexon-73af0302bed5076260ac935e452064aee423934d.tar.zst dexon-73af0302bed5076260ac935e452064aee423934d.zip |
we do not use the name Frontier Console
Diffstat (limited to 'cmd/ethereum/main.go')
-rw-r--r-- | cmd/ethereum/main.go | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/cmd/ethereum/main.go b/cmd/ethereum/main.go index 96b90b6e6..64b9949d2 100644 --- a/cmd/ethereum/main.go +++ b/cmd/ethereum/main.go @@ -31,9 +31,9 @@ import ( "github.com/codegangsta/cli" "github.com/ethereum/go-ethereum/cmd/utils" + "github.com/ethereum/go-ethereum/common" "github.com/ethereum/go-ethereum/core/types" "github.com/ethereum/go-ethereum/eth" - "github.com/ethereum/go-ethereum/common" "github.com/ethereum/go-ethereum/logger" "github.com/ethereum/go-ethereum/state" "github.com/peterh/liner" @@ -91,9 +91,9 @@ Use "ethereum dump 0" to dump the genesis block. { Action: console, Name: "console", - Usage: `Ethereum Frontier Console: interactive JavaScript environment`, + Usage: `Ethereum Console: interactive JavaScript environment`, Description: ` -Frontier Console is an interactive shell for the Ethereum Frontier JavaScript runtime environment which exposes a node admin interface as well as the DAPP JavaScript API. +Console is an interactive shell for the Ethereum 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 `, }, @@ -102,7 +102,7 @@ See https://github.com/ethereum/go-ethereum/wiki/Frontier-Console Name: "js", Usage: `executes the given JavaScript files in the Ethereum Frontier JavaScript VM`, Description: ` -The Ethereum Frontier JavaScript VM exposes a node admin interface as well as the DAPP JavaScript API. See https://github.com/ethereum/go-ethereum/wiki/Frontier-Console +The Ethereum JavaScript VM exposes a node admin interface as well as the DAPP JavaScript API. See https://github.com/ethereum/go-ethereum/wiki/Frontier-Console `, }, { |