Fix a typo in a name

This commit is contained in:
Leonid Logvinov
2017-06-29 10:53:11 -07:00
parent 5e5acdc56e
commit 91e2857645
2 changed files with 3 additions and 3 deletions

View File

@@ -604,7 +604,7 @@ export class ExchangeWrapper extends ContractWrapper {
* on the network that the provided web3 instance is connected to
* @return The ethereum addresses of all available exchange contract.
*/
public async getAvailableContractAddressedAsync(): Promise<string[]> {
public async getAvailableContractAddressesAsync(): Promise<string[]> {
const networkId = await this._web3Wrapper.getNetworkIdIfExistsAsync();
if (_.isUndefined(networkId)) {
return [];

View File

@@ -16,7 +16,7 @@ describe('ZeroEx library', () => {
it('overrides provider in nested web3s and invalidates contractInstances', async () => {
const web3 = web3Factory.create();
const zeroEx = new ZeroEx(web3.currentProvider);
const [exchangeContractAddress] = await zeroEx.exchange.getAvailableContractAddressedAsync();
const [exchangeContractAddress] = await zeroEx.exchange.getAvailableContractAddressesAsync();
// Instantiate the contract instances with the current provider
await (zeroEx.exchange as any)._getExchangeContractAsync(exchangeContractAddress);
await (zeroEx.tokenRegistry as any)._getTokenRegistryContractAsync();
@@ -55,7 +55,7 @@ describe('ZeroEx library', () => {
const zeroEx = new ZeroEx(web3.currentProvider);
let exchangeContractAddress: string;
before(async () => {
[exchangeContractAddress] = await zeroEx.exchange.getAvailableContractAddressedAsync();
[exchangeContractAddress] = await zeroEx.exchange.getAvailableContractAddressesAsync();
});
it('should return false if the data doesn\'t pertain to the signature & address', async () => {
expect(ZeroEx.isValidSignature('0x0', signature, address)).to.be.false();