Prettier fixes

This commit is contained in:
Fabio Berger
2018-06-25 23:17:56 +02:00
parent 1134ff1075
commit 8064914bb7
2 changed files with 2 additions and 8 deletions

View File

@@ -152,10 +152,7 @@ export class ERC721Wrapper {
const isOwner = tokenOwner === userAddress;
return isOwner;
}
public async isProxyApprovedForAllAsync(
userAddress: string,
tokenAddress: string,
): Promise<boolean> {
public async isProxyApprovedForAllAsync(userAddress: string, tokenAddress: string): Promise<boolean> {
this._validateProxyContractExistsOrThrow();
const tokenContract = this._getTokenContractFromAssetData(tokenAddress);
const operator = (this._proxyContract as ERC721ProxyContract).address;