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
No known key found for this signature in database
GPG Key ID: 488D7DCFB5A430D7

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