From 67e2208a1822732ea125af0c4cd757b9f735ce86 Mon Sep 17 00:00:00 2001 From: Leonid Logvinov Date: Tue, 6 Jun 2017 12:48:00 +0200 Subject: Rename accounts to addreses --- src/0x.js.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/0x.js.ts') diff --git a/src/0x.js.ts b/src/0x.js.ts index 0d8e30d8c..84362bd9a 100644 --- a/src/0x.js.ts +++ b/src/0x.js.ts @@ -122,11 +122,11 @@ export class ZeroEx { this.token.invalidateContractInstances(); } /** - * Get accounts via the supplied web3 instance available for sending transactions. + * Get addresses via the supplied web3 instance available for sending transactions. */ - public async getAvailableAccountsAsync(): Promise { - const availableAccounts = await this.web3Wrapper.getAvailableAccountsAsync(); - return availableAccounts; + public async getAvailableAddressesAsync(): Promise { + const availableAddresses = await this.web3Wrapper.getAvailableAddressesAsync(); + return availableAddresses; } /** * Computes the orderHash for a given order and returns it as a hex encoded string. -- cgit