changed console welcome message

This commit is contained in:
Bas van Kervel 2015-06-10 10:24:22 +02:00 committed by Bas van Kervel
parent 5f8e5a4875
commit c6c443385b
1 changed files with 8 additions and 11 deletions

View File

@ -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)
} }
} }