diff options
author | Leonid Logvinov <logvinov.leon@gmail.com> | 2017-06-06 18:48:00 +0800 |
---|---|---|
committer | Leonid Logvinov <logvinov.leon@gmail.com> | 2017-06-06 18:48:00 +0800 |
commit | 67e2208a1822732ea125af0c4cd757b9f735ce86 (patch) | |
tree | 0582c6a5ce6170ae568bbadbfbec043ba9c26ef5 /src/0x.js.ts | |
parent | 279790117be882186685c04099e3d46ec68991b6 (diff) | |
download | dexon-sol-tools-67e2208a1822732ea125af0c4cd757b9f735ce86.tar dexon-sol-tools-67e2208a1822732ea125af0c4cd757b9f735ce86.tar.gz dexon-sol-tools-67e2208a1822732ea125af0c4cd757b9f735ce86.tar.bz2 dexon-sol-tools-67e2208a1822732ea125af0c4cd757b9f735ce86.tar.lz dexon-sol-tools-67e2208a1822732ea125af0c4cd757b9f735ce86.tar.xz dexon-sol-tools-67e2208a1822732ea125af0c4cd757b9f735ce86.tar.zst dexon-sol-tools-67e2208a1822732ea125af0c4cd757b9f735ce86.zip |
Rename accounts to addreses
Diffstat (limited to 'src/0x.js.ts')
-rw-r--r-- | src/0x.js.ts | 8 |
1 files changed, 4 insertions, 4 deletions
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<string[]> { - const availableAccounts = await this.web3Wrapper.getAvailableAccountsAsync(); - return availableAccounts; + public async getAvailableAddressesAsync(): Promise<string[]> { + const availableAddresses = await this.web3Wrapper.getAvailableAddressesAsync(); + return availableAddresses; } /** * Computes the orderHash for a given order and returns it as a hex encoded string. |