Skip to content

Commit

Permalink
Use correct estimateFee in executeV3
Browse files Browse the repository at this point in the history
  • Loading branch information
DelevoXDG committed Jan 23, 2024
1 parent edf3bf5 commit 771b8ee
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -305,7 +305,7 @@ class StandardAccount(
}

override fun executeV3(calls: List<Call>): Request<InvokeFunctionResponse> {
return estimateFee(calls).compose { estimateFee ->
return estimateFeeV3(calls).compose { estimateFee ->
val resourceBounds = estimateFee.first().toResourceBounds()
executeV3(calls, resourceBounds.l1Gas)
}
Expand Down

0 comments on commit 771b8ee

Please sign in to comment.