diff options
author | Fabio Berger <me@fabioberger.com> | 2017-05-30 18:25:17 +0800 |
---|---|---|
committer | Fabio Berger <me@fabioberger.com> | 2017-05-30 18:25:17 +0800 |
commit | c536114b1638e30e5053dfc33d8e16465c0d373c (patch) | |
tree | f312c4ee08dd42bba858f154b3c2523197755422 | |
parent | 1f6ed77f4700229fe5d667cd352e74a0c4e4c3c4 (diff) | |
download | dexon-sol-tools-c536114b1638e30e5053dfc33d8e16465c0d373c.tar dexon-sol-tools-c536114b1638e30e5053dfc33d8e16465c0d373c.tar.gz dexon-sol-tools-c536114b1638e30e5053dfc33d8e16465c0d373c.tar.bz2 dexon-sol-tools-c536114b1638e30e5053dfc33d8e16465c0d373c.tar.lz dexon-sol-tools-c536114b1638e30e5053dfc33d8e16465c0d373c.tar.xz dexon-sol-tools-c536114b1638e30e5053dfc33d8e16465c0d373c.tar.zst dexon-sol-tools-c536114b1638e30e5053dfc33d8e16465c0d373c.zip |
make web3Wrapper a private instance variable
-rw-r--r-- | src/0x.js.ts | 2 | ||||
-rw-r--r-- | test/0x.js_test.ts | 8 |
2 files changed, 5 insertions, 5 deletions
diff --git a/src/0x.js.ts b/src/0x.js.ts index d708a8db6..11dbe3058 100644 --- a/src/0x.js.ts +++ b/src/0x.js.ts @@ -17,8 +17,8 @@ import {SolidityTypes, ECSignature, ZeroExError} from './types'; const MAX_DIGITS_IN_UNSIGNED_256_INT = 78; export class ZeroEx { - public web3Wrapper: Web3Wrapper; public exchange: ExchangeWrapper; + private web3Wrapper: Web3Wrapper; /** * Computes the orderHash given the order parameters and returns it as a hex encoded string. */ diff --git a/test/0x.js_test.ts b/test/0x.js_test.ts index bb312a00f..c45c70991 100644 --- a/test/0x.js_test.ts +++ b/test/0x.js_test.ts @@ -194,9 +194,9 @@ describe('ZeroEx library', () => { const web3 = web3Factory.create(); const zeroEx = new ZeroEx(web3); stubs = [ - Sinon.stub(zeroEx.web3Wrapper, 'getNodeVersionAsync') + Sinon.stub((zeroEx as any).web3Wrapper, 'getNodeVersionAsync') .returns(Promise.resolve(newParityNodeVersion)), - Sinon.stub(zeroEx.web3Wrapper, 'signTransactionAsync') + Sinon.stub((zeroEx as any).web3Wrapper, 'signTransactionAsync') .returns(Promise.resolve(signature)), Sinon.stub(ZeroEx, 'isValidSignature').returns(true), ]; @@ -218,9 +218,9 @@ describe('ZeroEx library', () => { const web3 = web3Factory.create(); const zeroEx = new ZeroEx(web3); stubs = [ - Sinon.stub(zeroEx.web3Wrapper, 'getNodeVersionAsync') + Sinon.stub((zeroEx as any).web3Wrapper, 'getNodeVersionAsync') .returns(Promise.resolve(newParityNodeVersion)), - Sinon.stub(zeroEx.web3Wrapper, 'signTransactionAsync') + Sinon.stub((zeroEx as any).web3Wrapper, 'signTransactionAsync') .returns(Promise.resolve(signature)), Sinon.stub(ZeroEx, 'isValidSignature').returns(true), ]; |