Skip to content

Commit

Permalink
fix: removing debug line
Browse files Browse the repository at this point in the history
  • Loading branch information
0xng committed Feb 23, 2024
1 parent d017c1e commit f695af3
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/transactions/sendPrivateTransaction.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ import { SendPrivateTransactionProps } from 'types';

export async function sendPrivateTransaction(props: SendPrivateTransactionProps) {

Check warning on line 4 in src/transactions/sendPrivateTransaction.ts

View workflow job for this annotation

GitHub Actions / build_and_test

Missing return type on function

Check warning on line 4 in src/transactions/sendPrivateTransaction.ts

View workflow job for this annotation

GitHub Actions / build_and_test

Missing return type on function
const { endpoint, privateTx, maxBlockNumber } = props;
const count = 0;

const requestData = {
jsonrpc: '2.0',
Expand All @@ -17,7 +16,6 @@ export async function sendPrivateTransaction(props: SendPrivateTransactionProps)
id: '1',
};

if (count == 1) return;
try {
const response = await axios.post(endpoint, requestData, {
headers: {
Expand Down

0 comments on commit f695af3

Please sign in to comment.