From 6d85b467c3b613ce13ca81c5e1ee54adbabf3546 Mon Sep 17 00:00:00 2001 From: Alex Coseru Date: Mon, 5 Oct 2020 23:24:56 +0300 Subject: [PATCH] Update Pool.ts --- src/balancer/Pool.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/balancer/Pool.ts b/src/balancer/Pool.ts index 3df7309e..6ae81604 100644 --- a/src/balancer/Pool.ts +++ b/src/balancer/Pool.ts @@ -213,7 +213,7 @@ export class Pool extends PoolFactory { * Set pool fee * @param {String} account * @param {String} poolAddress - * @param {String} fee (will be converted to wei) + * @param {String} fee 0.1=10% fee(max allowed) */ async setSwapFee( account: string, @@ -398,7 +398,7 @@ export class Pool extends PoolFactory { /** * Get pool fee * @param {String} poolAddress - * @return {String} Swap fee in wei + * @return {String} Swap fee (0.1=10% fee) */ async getSwapFee(poolAddress: string): Promise { const pool = new this.web3.eth.Contract(this.poolABI, poolAddress)