|
1 | 1 | // status = Network Mismatch, Not Connected, Connected, Standby, Syncing
|
2 |
| - |
| 2 | +const { powerMonitor } = require('electron') |
3 | 3 | const EventEmitter = require('events')
|
4 | 4 | const { addHexPrefix } = require('@ethereumjs/util')
|
5 | 5 | const { Hardfork } = require('@ethereumjs/common')
|
@@ -436,15 +436,21 @@ class Chains extends EventEmitter {
|
436 | 436 | super()
|
437 | 437 | this.connections = {}
|
438 | 438 |
|
439 |
| - store.observer(() => { |
| 439 | + const removeConnection = (chainId, type = 'ethereum') => { |
| 440 | + if (type in this.connections && chainId in this.connections[type]) { |
| 441 | + this.connections[type][chainId].removeAllListeners() |
| 442 | + this.connections[type][chainId].close(false) |
| 443 | + delete this.connections[type][chainId] |
| 444 | + } |
| 445 | + } |
| 446 | + |
| 447 | + const updateConnections = () => { |
440 | 448 | const networks = store('main.networks')
|
441 | 449 |
|
442 | 450 | Object.keys(this.connections).forEach((type) => {
|
443 | 451 | Object.keys(this.connections[type]).forEach((chainId) => {
|
444 | 452 | if (!networks[type][chainId]) {
|
445 |
| - this.connections[type][chainId].removeAllListeners() |
446 |
| - this.connections[type][chainId].close(false) |
447 |
| - delete this.connections[type][chainId] |
| 453 | + removeConnection(chainId, type) |
448 | 454 | }
|
449 | 455 | })
|
450 | 456 | })
|
@@ -482,7 +488,24 @@ class Chains extends EventEmitter {
|
482 | 488 | }
|
483 | 489 | })
|
484 | 490 | })
|
| 491 | + } |
| 492 | + |
| 493 | + powerMonitor.on('resume', () => { |
| 494 | + const activeConnections = Object.keys(this.connections) |
| 495 | + .map((type) => Object.keys(this.connections[type]).map((chainId) => `${type}:${chainId}`)) |
| 496 | + .flat() |
| 497 | + |
| 498 | + log.info('System resuming, resetting active connections', { chains: activeConnections }) |
| 499 | + |
| 500 | + activeConnections.forEach((id) => { |
| 501 | + const [type, chainId] = id.split(':') |
| 502 | + removeConnection(chainId, type) |
| 503 | + }) |
| 504 | + |
| 505 | + updateConnections() |
485 | 506 | })
|
| 507 | + |
| 508 | + store.observer(updateConnections, 'chains:connections') |
486 | 509 | }
|
487 | 510 |
|
488 | 511 | send(payload, res, targetChain) {
|
|
0 commit comments