Don't call mempoolChanged after disk cache dump.

This commit is contained in:
softsimon 2020-06-08 19:19:31 +07:00
parent 87e9d631fc
commit 1db06f8009

View File

@ -32,9 +32,6 @@ class Mempool {
public setMempool(mempoolData: { [txId: string]: TransactionExtended }) {
this.mempoolCache = mempoolData;
if (this.mempoolChangedCallback && mempoolData) {
this.mempoolChangedCallback(mempoolData);
}
}
public async updateMemPoolInfo() {