Skip to content

Commit

Permalink
fix: remove confirmations from wait method
Browse files Browse the repository at this point in the history
  • Loading branch information
aramalipoor committed Oct 3, 2022
1 parent 323f5ab commit b309f81
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/react/src/common/hooks/useContractWriteAndWait.ts
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ export const useContractWriteAndWait = <ArgsType extends any[] = any[]>({
: undefined,
);

const receipt = await response?.wait(1);
const receipt = await response?.wait();

return { response, receipt };
},
Expand Down

0 comments on commit b309f81

Please sign in to comment.