diff options
Diffstat (limited to 'src/ts/utils/utils.ts')
-rw-r--r-- | src/ts/utils/utils.ts | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/src/ts/utils/utils.ts b/src/ts/utils/utils.ts index bde1e7aba..b514b702d 100644 --- a/src/ts/utils/utils.ts +++ b/src/ts/utils/utils.ts @@ -3,11 +3,16 @@ import * as BN from 'bn.js'; export const utils = { /** * Converts BigNumber instance to BN - * The only we convert to BN is to remain compatible with `ethABI. soliditySHA3 ` that - * expects values of Solidity type `uint` to be of type `BN`. + * The only reason we convert to BN is to remain compatible with `ethABI. soliditySHA3` that + * expects values of Solidity type `uint` to be passed as type `BN`. * We do not use BN anywhere else in the codebase. */ bigNumberToBN(value: BigNumber.BigNumber) { return new BN(value.toString(), 10); }, + consoleLog(message: string): void { + /* tslint:disable */ + console.log(message); + /* tslint:enable */ + }, }; |