File tree Expand file tree Collapse file tree 1 file changed +1
-1
lines changed
Assets/Thirdweb/Core/Scripts/AccountAbstraction/Core Expand file tree Collapse file tree 1 file changed +1
-1
lines changed Original file line number Diff line number Diff line change @@ -213,7 +213,7 @@ private async Task<RpcResponseMessage> CreateUserOpAndSend(RpcRequestMessage req
213
213
Nonce = await GetNonce ( ) ,
214
214
InitCode = initCode ,
215
215
CallData = executeInput . Data . HexStringToByteArray ( ) ,
216
- CallGasLimit = transactionInput . Gas != null ? ( transactionInput . Gas . Value < 21000 ? 100000 : transactionInput . Gas . Value ) : 100000 ,
216
+ CallGasLimit = 50000 + ( transactionInput . Gas != null ? ( transactionInput . Gas . Value < 21000 ? 100000 : transactionInput . Gas . Value ) : 100000 ) ,
217
217
VerificationGasLimit = 100000 + gas ,
218
218
PreVerificationGas = 21000 ,
219
219
MaxFeePerGas = latestBlock . BaseFeePerGas . Value * 2 + BigInteger . Parse ( "1500000000" ) ,
You can’t perform that action at this time.
0 commit comments