Skip to content
This repository was archived by the owner on Mar 5, 2025. It is now read-only.

Commit 50f5e23

Browse files
committed
Add console to debug workflow
1 parent d80552f commit 50f5e23

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

test/e2e.method.signing.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -591,7 +591,7 @@ describe('transaction and message signing [ @E2E ]', function() {
591591
hardfork: 'petersburg',
592592
};
593593

594-
const txObject = {
594+
const txObject = {
595595
nonce: web3.utils.toHex(txCount),
596596
to: destination,
597597
value: web3.utils.toHex(web3.utils.toWei('0.1', 'ether')),
@@ -605,6 +605,8 @@ describe('transaction and message signing [ @E2E ]', function() {
605605
const data = Buffer.from(signed.rawTransaction.slice(2), "hex")
606606
const tx = TransactionFactory.fromSerializedData(data);
607607

608+
console.log(signed)
609+
console.log(tx)
608610
assert(signed.v === ('0x' + tx.v.toString('hex')));
609611
assert(signed.r === ('0x' + tx.r.toString('hex')));
610612
assert(signed.s === ('0x' + tx.s.toString('hex')));

0 commit comments

Comments
 (0)