Skip to content

Commit 0737010

Browse files
committed
fix: waitForCallsStatus propagation
1 parent 48cee07 commit 0737010

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

.changeset/two-rabbits-develop.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"@wagmi/core": patch
3+
---
4+
5+
Fixed propagation of `waitForCallsStatus` parameters.

packages/core/src/actions/waitForCallsStatus.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ export async function waitForCallsStatus<config extends Config>(
2121
config: config,
2222
parameters: WaitForCallsStatusParameters,
2323
): Promise<WaitForCallsStatusReturnType> {
24-
const { connector, id } = parameters
24+
const { connector } = parameters
2525
const client = await getConnectorClient(config, { connector })
26-
return viem_waitForCallsStatus(client, { id })
26+
return viem_waitForCallsStatus(client, parameters)
2727
}

0 commit comments

Comments
 (0)