mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-19 18:32:23 +00:00
console: update build command "geth" => "worldland"
This commit is contained in:
parent
6b6e34ae22
commit
d92b1b34ad
3 changed files with 7 additions and 6 deletions
6
Makefile
6
Makefile
|
|
@ -8,10 +8,10 @@ GOBIN = ./build/bin
|
||||||
GO ?= latest
|
GO ?= latest
|
||||||
GORUN = env GO111MODULE=on go run
|
GORUN = env GO111MODULE=on go run
|
||||||
|
|
||||||
geth:
|
worldland:
|
||||||
$(GORUN) build/ci.go install ./cmd/geth
|
$(GORUN) build/ci.go install ./cmd/worldland
|
||||||
@echo "Done building."
|
@echo "Done building."
|
||||||
@echo "Run \"$(GOBIN)/geth\" to launch geth."
|
@echo "Run \"$(GOBIN)/worldland\" to launch worldland."
|
||||||
|
|
||||||
all:
|
all:
|
||||||
$(GORUN) build/ci.go install
|
$(GORUN) build/ci.go install
|
||||||
|
|
|
||||||
|
|
@ -5,8 +5,8 @@ https://camo.githubusercontent.com/915b7be44ada53c290eb157634330494ebe3e30a/6874
|
||||||
)](https://pkg.go.dev/github.com/cryptoecc/ETH-ECC?tab=doc)
|
)](https://pkg.go.dev/github.com/cryptoecc/ETH-ECC?tab=doc)
|
||||||
[](https://goreportcard.com/report/github.com/cryptoecc/ETH-ECC).
|
[](https://goreportcard.com/report/github.com/cryptoecc/ETH-ECC).
|
||||||
|
|
||||||
> Development client of the WorldLand blockchain.
|
> Official Node client of the Worldland blockchain.
|
||||||
> It is a fork of [ethereum/go-ethereum](https://github.com/cryptoecc/ETH-ECC)
|
> It is a fork of [ethereum/go-ethereum](https://github.com/ethereum/go-ethereum)
|
||||||
|
|
||||||
## What is Worldland?
|
## What is Worldland?
|
||||||
|
|
||||||
|
|
@ -26,3 +26,4 @@ The ETH-ECC binaries (i.e. all code inside of the `cmd` directory) is licensed u
|
||||||
[GNU General Public License v3.0](https://www.gnu.org/licenses/gpl-3.0.en.html), also
|
[GNU General Public License v3.0](https://www.gnu.org/licenses/gpl-3.0.en.html), also
|
||||||
included in our repository in the `COPYING` file.
|
included in our repository in the `COPYING` file.
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -313,7 +313,7 @@ func (c *Console) AutoCompleteInput(line string, pos int) (string, []string, str
|
||||||
// Welcome show summary of current Geth instance and some metadata about the
|
// Welcome show summary of current Geth instance and some metadata about the
|
||||||
// console's available modules.
|
// console's available modules.
|
||||||
func (c *Console) Welcome() {
|
func (c *Console) Welcome() {
|
||||||
message := "Welcome to the Geth JavaScript console!\n\n"
|
message := "Welcome to the Worldland JavaScript console!\n\n"
|
||||||
|
|
||||||
// Print some generic Geth metadata
|
// Print some generic Geth metadata
|
||||||
if res, err := c.jsre.Run(`
|
if res, err := c.jsre.Run(`
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue