mirror of
https://github.com/everoddandeven/monerod-gui.git
synced 2025-01-03 09:29:36 +00:00
Clear tx pool if txs in are not in poll anymore
This commit is contained in:
parent
06f3ad43d7
commit
9752f27cc2
1 changed files with 3 additions and 0 deletions
|
@ -474,6 +474,9 @@ export class DaemonDataService {
|
|||
this._transactionPool = await this.daemonService.getTransactionPool();
|
||||
this._gettingTransactionPool = false;
|
||||
}
|
||||
else if (this._daemonInfo.txPoolSize == 0 && this._transactionPool != undefined) {
|
||||
this._transactionPool = undefined;
|
||||
}
|
||||
|
||||
this._gettingConnections = true;
|
||||
this._connections = await this.daemonService.getConnections();
|
||||
|
|
Loading…
Reference in a new issue