From f6ec388916ebdd0c67f545125d67ca5a7af49131 Mon Sep 17 00:00:00 2001 From: Leonid Logvinov Date: Thu, 29 Jun 2017 11:08:33 -0700 Subject: Fix a typo in a name --- src/contract_wrappers/exchange_wrapper.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/contract_wrappers/exchange_wrapper.ts b/src/contract_wrappers/exchange_wrapper.ts index 08a145b0e..d1fc0ea90 100644 --- a/src/contract_wrappers/exchange_wrapper.ts +++ b/src/contract_wrappers/exchange_wrapper.ts @@ -809,11 +809,11 @@ export class ExchangeWrapper extends ContractWrapper { private _getExchangeArtifactsByAddressOrThrow(exchangeContractAddress: string): ContractArtifact { const exchangeArtifacts = _.values(ExchangeArtifactsByName); for (const exchangeArtifact of exchangeArtifacts) { - const exchangeAddressesInAftifact = _.map( + const exchangeAddressesInArtifact = _.map( _.values(exchangeArtifact.networks), artifactsByNetwork => artifactsByNetwork.address, ); - if (_.includes(exchangeAddressesInAftifact, exchangeContractAddress)) { + if (_.includes(exchangeAddressesInArtifact, exchangeContractAddress)) { return exchangeArtifact; } } -- cgit