From c0c57c101f1350ea46e4aa75302f782ac73c4249 Mon Sep 17 00:00:00 2001 From: Kewde Date: Sun, 18 Jun 2017 13:12:55 +0200 Subject: [PATCH] Undo "Observable, Observer from rxjs/..." -> Broke overview --- src/app/wallet/balances/balance.service.ts | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/app/wallet/balances/balance.service.ts b/src/app/wallet/balances/balance.service.ts index 19c7bb3e4..8aba71150 100644 --- a/src/app/wallet/balances/balance.service.ts +++ b/src/app/wallet/balances/balance.service.ts @@ -1,6 +1,5 @@ import { Injectable } from '@angular/core'; -import { Observable } from 'rxjs/Observable'; -import { Observer } from 'rxjs//Observer'; +import { Observable, Observer } from 'rxjs'; export class Balances { private _total: number; @@ -112,4 +111,6 @@ export class BalanceService { When a new transaction arrives, we must update the balance. Might be worth ignoring this on IBD. */ } + + }