Skip to content

Commit

Permalink
Tests: fix safe-wallet-provider unit tests (#4606)
Browse files Browse the repository at this point in the history
  • Loading branch information
katspaugh authored and usame-algan committed Dec 5, 2024
1 parent 21a639b commit fc7d0ab
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/services/safe-wallet-provider/index.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -658,10 +658,10 @@ describe('SafeWalletProvider', () => {
result: {
receipts: [
{
blockHash: receipt.blockHash,
blockNumber: receipt.blockNumber,
blockHash: numberToHex(Number(receipt.blockHash)),
blockNumber: numberToHex(Number(receipt.blockNumber)),
chainId: '0x1',
gasUsed: receipt.gasUsed,
gasUsed: numberToHex(Number(receipt.gasUsed)),
logs: receipt.logs,
status: '0x1',
transactionHash: '0x123',
Expand Down

0 comments on commit fc7d0ab

Please sign in to comment.