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

View File

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