make web3Wrapper a private instance variable
This commit is contained in:
parent
1f6ed77f47
commit
c536114b16
@ -17,8 +17,8 @@ import {SolidityTypes, ECSignature, ZeroExError} from './types';
|
|||||||
const MAX_DIGITS_IN_UNSIGNED_256_INT = 78;
|
const MAX_DIGITS_IN_UNSIGNED_256_INT = 78;
|
||||||
|
|
||||||
export class ZeroEx {
|
export class ZeroEx {
|
||||||
public web3Wrapper: Web3Wrapper;
|
|
||||||
public exchange: ExchangeWrapper;
|
public exchange: ExchangeWrapper;
|
||||||
|
private web3Wrapper: Web3Wrapper;
|
||||||
/**
|
/**
|
||||||
* Computes the orderHash given the order parameters and returns it as a hex encoded string.
|
* Computes the orderHash given the order parameters and returns it as a hex encoded string.
|
||||||
*/
|
*/
|
||||||
|
@ -194,9 +194,9 @@ describe('ZeroEx library', () => {
|
|||||||
const web3 = web3Factory.create();
|
const web3 = web3Factory.create();
|
||||||
const zeroEx = new ZeroEx(web3);
|
const zeroEx = new ZeroEx(web3);
|
||||||
stubs = [
|
stubs = [
|
||||||
Sinon.stub(zeroEx.web3Wrapper, 'getNodeVersionAsync')
|
Sinon.stub((zeroEx as any).web3Wrapper, 'getNodeVersionAsync')
|
||||||
.returns(Promise.resolve(newParityNodeVersion)),
|
.returns(Promise.resolve(newParityNodeVersion)),
|
||||||
Sinon.stub(zeroEx.web3Wrapper, 'signTransactionAsync')
|
Sinon.stub((zeroEx as any).web3Wrapper, 'signTransactionAsync')
|
||||||
.returns(Promise.resolve(signature)),
|
.returns(Promise.resolve(signature)),
|
||||||
Sinon.stub(ZeroEx, 'isValidSignature').returns(true),
|
Sinon.stub(ZeroEx, 'isValidSignature').returns(true),
|
||||||
];
|
];
|
||||||
@ -218,9 +218,9 @@ describe('ZeroEx library', () => {
|
|||||||
const web3 = web3Factory.create();
|
const web3 = web3Factory.create();
|
||||||
const zeroEx = new ZeroEx(web3);
|
const zeroEx = new ZeroEx(web3);
|
||||||
stubs = [
|
stubs = [
|
||||||
Sinon.stub(zeroEx.web3Wrapper, 'getNodeVersionAsync')
|
Sinon.stub((zeroEx as any).web3Wrapper, 'getNodeVersionAsync')
|
||||||
.returns(Promise.resolve(newParityNodeVersion)),
|
.returns(Promise.resolve(newParityNodeVersion)),
|
||||||
Sinon.stub(zeroEx.web3Wrapper, 'signTransactionAsync')
|
Sinon.stub((zeroEx as any).web3Wrapper, 'signTransactionAsync')
|
||||||
.returns(Promise.resolve(signature)),
|
.returns(Promise.resolve(signature)),
|
||||||
Sinon.stub(ZeroEx, 'isValidSignature').returns(true),
|
Sinon.stub(ZeroEx, 'isValidSignature').returns(true),
|
||||||
];
|
];
|
||||||
|
Loading…
x
Reference in New Issue
Block a user