Clear txCache when switching network

fixes #4603
This commit is contained in:
softsimon
2024-01-23 01:23:51 +07:00
parent 5b622c7786
commit 5ecdf1988e

View File

@@ -40,6 +40,7 @@ export class CacheService {
this.stateService.networkChanged$.subscribe((network) => {
this.network = network;
this.resetBlockCache();
this.txCache = {};
});
}