Don't call mempoolChanged after disk cache dump.

This commit is contained in:
softsimon
2020-06-08 19:19:31 +07:00
parent 8b6a681614
commit 912d45165b

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() {