diff options
Diffstat (limited to 'test/utils')
-rw-r--r-- | test/utils/order.ts | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/test/utils/order.ts b/test/utils/order.ts index 2de87bac1..d775dc616 100644 --- a/test/utils/order.ts +++ b/test/utils/order.ts @@ -35,11 +35,8 @@ export async function createSignedOrder( feeRecipient: constants.NULL_ADDRESS, expirationUnixTimestampSec: new BigNumber(INF_TIMESTAMP), }; - console.log(order.makerTokenAmount.toString()); - console.log(order.takerTokenAmount.toString()); const orderHash = ZeroEx.getOrderHashHex(EXCHANGE_ADDRESS, order); const ecSignature = await zeroEx.signOrderHashAsync(orderHash); const signedOrder: SignedOrder = _.assign(order, {ecSignature}); - console.log(signedOrder); return signedOrder; } |