Remove debug output

This commit is contained in:
Leonid Logvinov 2017-05-31 16:06:14 +02:00
parent 84c652d205
commit 7d29fb2174
No known key found for this signature in database
GPG Key ID: 0DD294BFDE8C95D4

View File

@ -35,11 +35,8 @@ export async function createSignedOrder(
feeRecipient: constants.NULL_ADDRESS, feeRecipient: constants.NULL_ADDRESS,
expirationUnixTimestampSec: new BigNumber(INF_TIMESTAMP), expirationUnixTimestampSec: new BigNumber(INF_TIMESTAMP),
}; };
console.log(order.makerTokenAmount.toString());
console.log(order.takerTokenAmount.toString());
const orderHash = ZeroEx.getOrderHashHex(EXCHANGE_ADDRESS, order); const orderHash = ZeroEx.getOrderHashHex(EXCHANGE_ADDRESS, order);
const ecSignature = await zeroEx.signOrderHashAsync(orderHash); const ecSignature = await zeroEx.signOrderHashAsync(orderHash);
const signedOrder: SignedOrder = _.assign(order, {ecSignature}); const signedOrder: SignedOrder = _.assign(order, {ecSignature});
console.log(signedOrder);
return signedOrder; return signedOrder;
} }