remove stray console log

This commit is contained in:
Fabio Berger
2017-05-26 17:49:26 +02:00
parent 0aabade166
commit aa3ae700b0

View File

@@ -92,7 +92,6 @@ describe('ExchangeWrapper', () => {
}); });
it('should return true if the signature does pertain to the dataHex & address', async () => { it('should return true if the signature does pertain to the dataHex & address', async () => {
const isValid = await exchangeWrapper.isValidSignatureAsync(dataHex, signature, address); const isValid = await exchangeWrapper.isValidSignatureAsync(dataHex, signature, address);
console.log('isValid', isValid);
expect(isValid).to.be.true; expect(isValid).to.be.true;
}); });
}); });