changed console welcome message
This commit is contained in:
parent
5f8e5a4875
commit
c6c443385b
@ -234,18 +234,15 @@ func (self *jsre) suportedApis(ipcpath string) ([]string, error) {
|
|||||||
|
|
||||||
// show summary of current geth instance
|
// show summary of current geth instance
|
||||||
func (self *jsre) welcome(ipcpath string) {
|
func (self *jsre) welcome(ipcpath string) {
|
||||||
self.re.Eval(`
|
self.re.Eval(`console.log('instance: ' + web3.version.client);`)
|
||||||
console.log(' Connected to: ' + web3.version.client);
|
self.re.Eval(`console.log("coinbase: " + eth.coinbase);`)
|
||||||
`)
|
self.re.Eval(`var lastBlockTimestamp = 1000 * eth.getBlock(eth.blockNumber).timestamp`)
|
||||||
|
self.re.Eval(`console.log("at block: " + eth.blockNumber + " (" + new Date(lastBlockTimestamp).toLocaleDateString()
|
||||||
|
+ " " + new Date(lastBlockTimestamp).toLocaleTimeString() + ")");`)
|
||||||
|
|
||||||
if apis, err := self.suportedApis(ipcpath); err == nil {
|
if modules, err := self.suportedApis(ipcpath); err == nil {
|
||||||
apisStr := ""
|
self.re.Eval(fmt.Sprintf("var modules = '%s';", strings.Join(modules, " ")))
|
||||||
for _, api := range apis {
|
self.re.Eval(`console.log(" modules: " + modules);`)
|
||||||
apisStr += api + " "
|
|
||||||
}
|
|
||||||
self.re.Eval(fmt.Sprintf(`console.log("Available api's: %s");`, apisStr))
|
|
||||||
} else {
|
|
||||||
utils.Fatalf("unable to determine supported api's - %v", err)
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user