Skip to content

Commit

Permalink
fix: log transactions
Browse files Browse the repository at this point in the history
  • Loading branch information
doomsower committed Apr 16, 2024
1 parent 6afebcc commit 1c28968
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/services/ExecutorService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -67,8 +67,8 @@ export default class ExecutorService {
// }
// }

this.logger.debug(`sending tx via normal rpc`);
const req = await this.wallet.populateTransaction(txData);
this.logger.debug({ req }, `sending tx via normal rpc`);
const signedTx = await this.wallet.signTransaction(req);
const tx = await this.provider.sendTransaction(signedTx);
this.logger.debug(`sent transaction ${tx.hash}`);
Expand Down

0 comments on commit 1c28968

Please sign in to comment.