it('will verify with an uncompressed pubkey', () => {
   const otherPrivateKey = new bitcore.PrivateKey('67fd2209ce4a95f6f1d421ab3fbea47ada13df11b73b30c4d9a9f78cc80651ac');
   const message = new Message('This is an example of a signed message.');
   const otherSignature = message.sign(otherPrivateKey);
   const verified = message.verify(otherPrivateKey.toAddress(), otherSignature);
   verified.should.equal(true);
 });