You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Please fill out the template below to the best of your ability and include a label indicating which tool/service you were working with when you encountered the problem.
Run a transaction against the emulator with the relevant version github.com/onflow/flow-emulator v0.59.1-0.20231218185945-9116c416533f
Acceptance Criteria
Effort and computation are the same.
Context
I am trying to update overflow to this code and I see that the emulator is reporting different numbers for FeesDeducted and computationUsed, is that exepected? because it has not been like that before this versio
The text was updated successfully, but these errors were encountered:
run it with go run ./cmd/emulator --transaction-fees=true --verbose
send a tx with flow transactions send <(echo """transaction{prepare(s : &Account){ var i = 0;while i < 10000 {i=i+1}}}""") --signer emulator-account
the resulting event has executionEffort (UFix64): 0.00000478
which matches the emulator output: DBG ⭐ Transaction executed computationUsed=478 memoryEstimate=25369033 txID=b5b11e587630d03db246596381739b35cafff3a147e84fb6497e397b6f96cd0a
But I'm not sure at which point you are capturing the meter output. If you are capturing the meter output to late the system transaction might be included in it.
p.s.: I tried the fix from @bluesign#543 but that doesn't change anything in my scenario
Instructions
Please fill out the template below to the best of your ability and include a label indicating which tool/service you were working with when you encountered the problem.
Problem
Feed decuted event looks like this
so 29 effort
Meters reported looks like this
so this reports 31
These should be the same should the not?
Steps to Reproduce
Run a transaction against the emulator with the relevant version
github.com/onflow/flow-emulator v0.59.1-0.20231218185945-9116c416533f
Acceptance Criteria
Effort and computation are the same.
Context
I am trying to update overflow to this code and I see that the emulator is reporting different numbers for FeesDeducted and computationUsed, is that exepected? because it has not been like that before this versio
The text was updated successfully, but these errors were encountered: