Skip to content

Commit

Permalink
fix: lint
Browse files Browse the repository at this point in the history
  • Loading branch information
weatherstar committed Dec 25, 2024
1 parent d9189bb commit 35b400c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/kit-bg/src/vaults/impls/evm/Vault.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1252,7 +1252,7 @@ export default class Vault extends VaultBase {

const recoveredTxid = ethers.utils.keccak256(signedTx.rawTx);

return recoveredTxid === txid;
return recoveredTxid.toLowerCase() === txid.toLowerCase();
}

// RPC Client
Expand Down

0 comments on commit 35b400c

Please sign in to comment.