This commit is contained in:
Steve Klebanoff
2018-11-09 15:52:25 -08:00
parent 4072076965
commit fd83ca2cb8
2 changed files with 2 additions and 1 deletions

View File

@@ -11,7 +11,7 @@ import { asyncData } from '../redux/async_data';
import { DEFAULT_STATE, DefaultState, State } from '../redux/reducer';
import { store, Store } from '../redux/store';
import { fonts } from '../style/fonts';
import { AffiliateInfo, AssetMetaData, Network, OrderSource, AccountState } from '../types';
import { AccountState, AffiliateInfo, AssetMetaData, Network, OrderSource } from '../types';
import { assetUtils } from '../util/asset';
import { errorFlasher } from '../util/error_flasher';
import { gasPriceEstimator } from '../util/gas_price_estimator';

View File

@@ -22,6 +22,7 @@ export class Heartbeater {
this._performFunction();
}
// tslint:disable-next-line:no-unbound-method
this._intervalId = intervalUtils.setAsyncExcludingInterval(this._performFunction, intervalTimeMs, _.noop);
}