aboutsummaryrefslogtreecommitdiffstats
path: root/src/ts/utils/utils.ts
diff options
context:
space:
mode:
authorFabio Berger <me@fabioberger.com>2017-05-29 15:09:54 +0800
committerFabio Berger <me@fabioberger.com>2017-05-29 15:09:54 +0800
commit62cc3b919c73b7726793808e3b9631dba41cef28 (patch)
tree22c5f1728c56b09fa0e15e5e645c1f891224a6ee /src/ts/utils/utils.ts
parent281b9eaa5d207d32ae38fbab25cbca83fe81efa1 (diff)
parentb897bdab79fe566ffc8c19c6ec9f1bb7260fa95e (diff)
downloaddexon-sol-tools-62cc3b919c73b7726793808e3b9631dba41cef28.tar
dexon-sol-tools-62cc3b919c73b7726793808e3b9631dba41cef28.tar.gz
dexon-sol-tools-62cc3b919c73b7726793808e3b9631dba41cef28.tar.bz2
dexon-sol-tools-62cc3b919c73b7726793808e3b9631dba41cef28.tar.lz
dexon-sol-tools-62cc3b919c73b7726793808e3b9631dba41cef28.tar.xz
dexon-sol-tools-62cc3b919c73b7726793808e3b9631dba41cef28.tar.zst
dexon-sol-tools-62cc3b919c73b7726793808e3b9631dba41cef28.zip
Merge branch 'master' of github.com:0xProject/0x.js
# Conflicts: # src/ts/0x.js.ts # src/ts/utils/utils.ts
Diffstat (limited to 'src/ts/utils/utils.ts')
-rw-r--r--src/ts/utils/utils.ts9
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 */
+ },
};