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

Commit 09f5e2f

Browse files
committed
Remove logs and call done()
1 parent 50f5e23 commit 09f5e2f

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

test/e2e.method.signing.js

+1-2
Original file line numberDiff line numberDiff line change
@@ -605,10 +605,9 @@ 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)
610608
assert(signed.v === ('0x' + tx.v.toString('hex')));
611609
assert(signed.r === ('0x' + tx.r.toString('hex')));
612610
assert(signed.s === ('0x' + tx.s.toString('hex')));
611+
done();
613612
});
614613
});

0 commit comments

Comments
 (0)