Skip to content

Commit d0d6c9d

Browse files
committed
cleanup
1 parent 8ad454d commit d0d6c9d

File tree

2 files changed

+0
-10
lines changed

2 files changed

+0
-10
lines changed

packages/eth-rpc-adapter/src/__tests__/endpoint-tests/eth_getLogs.test.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,6 @@ describe('eth_getLogs', () => {
3333
await (await token0.transfer(wallet3.address, 3000)).wait();
3434

3535
allLogs = (await eth_getLogs([ALL_BLOCK_RANGE_FILTER])).data.result;
36-
console.log(allLogs);
3736
expect(allLogs.length).to.equal(3);
3837
});
3938

packages/eth-rpc-adapter/src/__tests__/endpoint-tests/eth_getTransaction.test.ts

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,6 @@ describe('get tx and receipt', () => {
2727
const tx = (await eth_getTransactionByHash([txHash])).data.result;
2828
const receipt = (await eth_getTransactionReceipt([txHash])).data.result;
2929

30-
console.log(tx);
31-
console.log(receipt);
32-
3330
expect(tx).to.contain({
3431
hash: txHash,
3532
blockNumber: tokenDeployedBlock,
@@ -56,9 +53,6 @@ describe('get tx and receipt', () => {
5653
let tx = (await eth_getTransactionByHash([pendingTx.hash])).data.result;
5754
let receipt = (await eth_getTransactionReceipt([pendingTx.hash])).data.result;
5855

59-
console.log(tx);
60-
console.log(receipt);
61-
6256
expect(tx).to.contain({
6357
hash: pendingTx.hash,
6458
blockNumber: null, // pending tx
@@ -77,9 +71,6 @@ describe('get tx and receipt', () => {
7771
tx = (await eth_getTransactionByHash([pendingTx.hash])).data.result;
7872
receipt = (await eth_getTransactionReceipt([pendingTx.hash])).data.result;
7973

80-
console.log(tx);
81-
console.log(receipt);
82-
8374
const blockNumber = (await eth_blockNumber()).data.result;
8475
expect(tx).to.contain({
8576
hash: pendingTx.hash,

0 commit comments

Comments
 (0)