Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions packages/wallet/wdk/test/recovery.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ describe('Recovery', () => {
const provider = Provider.from(RpcTransport.fromHttp(LOCAL_RPC_URL))
await provider.request({
method: 'anvil_setBalance',
params: [wallet!, '0x1'],
params: [wallet!, '0x3635c9adc5dea0000'], // 0.1 ETH
})

// Create a new recovery payload
Expand Down Expand Up @@ -189,7 +189,7 @@ describe('Recovery', () => {
params: [wallet!, 'latest'],
})
expect(balance).toBeDefined()
expect(balance).toBe('0x0')
expect(balance).toBe('0x3635c9adc5de9ffff') // 0.1 ETH - 1 wei

// Refresh the queued recovery payloads, the executed one
// should be removed
Expand Down
Loading