From 7f48fe2ccb96b07f3f170b0c16068121b5594b06 Mon Sep 17 00:00:00 2001 From: Alex Coseru Date: Mon, 5 Oct 2020 23:33:17 +0300 Subject: [PATCH] Update src/balancer/Pool.ts Co-authored-by: Matthias Kretschmann --- src/balancer/Pool.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/balancer/Pool.ts b/src/balancer/Pool.ts index 6ae81604..d630231a 100644 --- a/src/balancer/Pool.ts +++ b/src/balancer/Pool.ts @@ -398,7 +398,7 @@ export class Pool extends PoolFactory { /** * Get pool fee * @param {String} poolAddress - * @return {String} Swap fee (0.1=10% fee) + * @return {String} Swap fee. To get the percentage value, substract by 100. E.g. `0.1` represents a 10% swap fee. */ async getSwapFee(poolAddress: string): Promise { const pool = new this.web3.eth.Contract(this.poolABI, poolAddress)