This commit is contained in:
Steve Klebanoff
2020-07-13 15:49:39 -07:00
parent 3e823cc9e3
commit 8763713596

View File

@@ -72,7 +72,7 @@ export class QuoteReportGenerator {
}
public generateReport(): QuoteReport {
const dexReportSourcesConsidered = this._dexQuotes.map(ds => this._dexSampleToReportSource(ds));
const dexReportSourcesConsidered = this._dexQuotes.map(dq => this._dexSampleToReportSource(dq));
const nativeOrderSourcesConsidered = this._nativeOrders.map(no => this._nativeOrderToReportSource(no));
const sourcesConsidered = [...dexReportSourcesConsidered, ...nativeOrderSourcesConsidered];