+ tooltips
+ sort transactions by date correctly + confirmed transactions indicator
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
const {app, dialog, BrowserWindow} = require('electron')
|
||||
const child_process = require('child_process');
|
||||
const {app, dialog} = require('electron');
|
||||
const path = require('path');
|
||||
|
||||
class Geth {
|
||||
@@ -14,6 +14,7 @@ class Geth {
|
||||
this.gethProcess = child_process.spawn(gethPath, ['--ws', '--wsorigins', '*', '--wsaddr', '127.0.0.1', '--wsport', '8546', '--wsapi', 'admin,db,eth,net,miner,personal,web3']);
|
||||
this.gethProcess.on('error', function(err) {
|
||||
dialog.showErrorBox("Error starting application", "Geth failed to start!");
|
||||
app.quit();
|
||||
});
|
||||
this.gethProcess.stderr.on('data', function(data) {
|
||||
console.log(data.toString());
|
||||
|
||||
Reference in New Issue
Block a user