diff --git a/src/balancer/Pool.ts b/src/balancer/Pool.ts index c09f5955..60ab4cda 100644 --- a/src/balancer/Pool.ts +++ b/src/balancer/Pool.ts @@ -157,24 +157,6 @@ export class Pool extends PoolFactory { return result } - /** - * Get total supply of pool tokens - * @param {String} poolAddress - * @return {String} - */ - async totalSupply(poolAddress: string): Promise { - let result = null - - try { - const pool = new this.web3.eth.Contract(this.poolABI, poolAddress) - const totalSupply = await pool.methods.totalSupply().call() - result = this.web3.utils.fromWei(totalSupply) - } catch (e) { - console.error(e) - } - return result - } - /** * Adds tokens to pool * @param {String} account