Remove frontend fee calculation and read it from the websocket instead

This commit is contained in:
nymkappa
2022-05-27 12:52:40 +02:00
parent 904231a108
commit acb5c4d084
6 changed files with 27 additions and 43 deletions

View File

@@ -263,6 +263,10 @@ export class WebsocketService {
this.stateService.difficultyAdjustment$.next(response.da);
}
if (response.fees) {
this.stateService.recommendedFees$.next(response.fees);
}
if (response.backendInfo) {
this.stateService.backendInfo$.next(response.backendInfo);