Skip to content

Commit

Permalink
Minor fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Thunnini committed Jan 14, 2025
1 parent 61f6a4c commit e7a6960
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions packages/background/src/recent-send-history/service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1353,9 +1353,7 @@ export class RecentSendHistoryService {
const txTracer = new TendermintTxTracer(chainInfo.rpc, "/websocket");
txTracer.addEventListener("error", () => onFulfill(false));
txTracer
.traceTx({
"tx.hash": history.txHash,
})
.traceTx(Buffer.from(history.txHash.replace("0x", ""), "hex"))
.then((res: any) => {
txTracer.close();

Expand Down

0 comments on commit e7a6960

Please sign in to comment.