Skip to content

Commit

Permalink
Remove logs and call done()
Browse files Browse the repository at this point in the history
  • Loading branch information
nikoulai committed Aug 25, 2022
1 parent 50f5e23 commit 09f5e2f
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions test/e2e.method.signing.js
Original file line number Diff line number Diff line change
Expand Up @@ -605,10 +605,9 @@ describe('transaction and message signing [ @E2E ]', function() {
const data = Buffer.from(signed.rawTransaction.slice(2), "hex")
const tx = TransactionFactory.fromSerializedData(data);

console.log(signed)
console.log(tx)
assert(signed.v === ('0x' + tx.v.toString('hex')));
assert(signed.r === ('0x' + tx.r.toString('hex')));
assert(signed.s === ('0x' + tx.s.toString('hex')));
done();
});
});

0 comments on commit 09f5e2f

Please sign in to comment.