console: fix instance name printed incorrect on start

This commit is contained in:
Bas van Kervel 2015-11-30 09:49:10 +01:00
parent 66d47ced48
commit 1ead43c88c
1 changed files with 1 additions and 1 deletions

View File

@ -245,7 +245,7 @@ func (self *jsre) batch(statement string) {
func (self *jsre) welcome() {
self.re.Run(`
(function () {
console.log('instance: ' + web3.version.client);
console.log('instance: ' + web3.version.node);
console.log(' datadir: ' + admin.datadir);
console.log("coinbase: " + eth.coinbase);
var ts = 1000 * eth.getBlock(eth.blockNumber).timestamp;