From edf9d4802a65aaabf019c123fe84eb31f6a7dada Mon Sep 17 00:00:00 2001 From: Thunnini Date: Tue, 14 Jan 2025 18:18:36 +0900 Subject: [PATCH] Minor fix --- packages/background/src/recent-send-history/service.ts | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/packages/background/src/recent-send-history/service.ts b/packages/background/src/recent-send-history/service.ts index 98025f72b4..9b78090ab1 100644 --- a/packages/background/src/recent-send-history/service.ts +++ b/packages/background/src/recent-send-history/service.ts @@ -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, "hex")) .then((res: any) => { txTracer.close();