Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
bitrinjani committed Jan 28, 2018
1 parent 5fb9f0b commit ee7fa9e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Arbitrager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import symbols from './symbols';
import { fatalErrors } from './constants';
import QuoteAggregator from './QuoteAggregator';
import PositionService from './PositionService';
import OppotunitySearcher from './OpportunitySearcher';
import OpportunitySearcher from './OpportunitySearcher';
import PairTrader from './PairTrader';

@injectable()
Expand All @@ -21,7 +21,7 @@ export default class Arbitrager {
private readonly quoteAggregator: QuoteAggregator,
@inject(symbols.ConfigStore) private readonly configStore: ConfigStore,
private readonly positionService: PositionService,
private readonly opportunitySearcher: OppotunitySearcher,
private readonly opportunitySearcher: OpportunitySearcher,
private readonly pairTrader: PairTrader
) {
this.opportunitySearcher.on('status', x => (this.status = x));
Expand Down

0 comments on commit ee7fa9e

Please sign in to comment.