Skip to content

Commit 7f2f5c1

Browse files
committed
Reduce user op polling time to 1s
1 parent 1b5a944 commit 7f2f5c1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Assets/Thirdweb/Core/Scripts/AccountAbstraction/Core/SmartWallet.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -254,7 +254,7 @@ private async Task<RpcResponseMessage> CreateUserOpAndSend(RpcRequestMessage req
254254
{
255255
var getUserOpResponse = await BundlerClient.EthGetUserOperationByHash(Config.bundlerUrl, apiKey, requestMessage.Id, userOpHash);
256256
txHash = getUserOpResponse?.transactionHash;
257-
await new WaitForSecondsRealtime(2f);
257+
await new WaitForSecondsRealtime(1f);
258258
}
259259
ThirdwebDebug.Log("Tx Hash: " + txHash);
260260

0 commit comments

Comments
 (0)