Skip to content

Commit

Permalink
executeV3 should still pass forFeeEstimate=true, even though it's not…
Browse files Browse the repository at this point in the history
… correctly handled by networks
  • Loading branch information
DelevoXDG committed Dec 27, 2023
1 parent 16f3c76 commit 76099bc
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -292,7 +292,7 @@ class StandardAccount(
nonce = nonce,
l1ResourceBounds = l1ResourceBounds,
)
val payload = sign(calls, signParams, false)
val payload = sign(calls, signParams, true)

return@compose provider.invokeFunction(payload)
}
Expand Down Expand Up @@ -448,7 +448,7 @@ class StandardAccount(
nonce = nonce,
l1ResourceBounds = ResourceBounds.ZERO,
)
val payload = sign(calls, executionParams, false)
val payload = sign(calls, executionParams, true)

val signedTransaction = TransactionFactory.makeInvokeV3Transaction(
senderAddress = payload.senderAddress,
Expand Down

0 comments on commit 76099bc

Please sign in to comment.