Clearer usage of chainId constants in order-utils
tests.
This commit is contained in:
committed by
Amir Bandeali
parent
bd06c7b343
commit
e6aff19a0c
@@ -20,7 +20,7 @@ const expect = chai.expect;
|
||||
describe('Signature utils', () => {
|
||||
let makerAddress: string;
|
||||
const fakeExchangeContractAddress = '0x1dc4c1cefef38a777b15aa20260a54e584b16c48';
|
||||
const CHAIN_ID = 1337;
|
||||
const fakeChainId = 1337;
|
||||
let order: Order;
|
||||
let transaction: ZeroExTransaction;
|
||||
before(async () => {
|
||||
@@ -34,7 +34,7 @@ describe('Signature utils', () => {
|
||||
makerAssetData: constants.NULL_ADDRESS,
|
||||
takerAssetData: constants.NULL_ADDRESS,
|
||||
exchangeAddress: fakeExchangeContractAddress,
|
||||
chainId: CHAIN_ID,
|
||||
chainId: fakeChainId,
|
||||
salt: new BigNumber(0),
|
||||
makerFee: new BigNumber(0),
|
||||
takerFee: new BigNumber(0),
|
||||
|
Reference in New Issue
Block a user