Skip to content

Commit

Permalink
Fix returnData at FT tests
Browse files Browse the repository at this point in the history
  • Loading branch information
ignasirv committed Sep 21, 2023
1 parent 01fd045 commit 107a090
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
- name: Clone repos
run: |
cd ..
git clone https://github.com/0xPolygonHermez/zkevm-testvectors.git --branch v2.0.0-rc.1-fork.5
git clone https://github.com/0xPolygonHermez/zkevm-testvectors.git --branch v2.0.0-fork.5
cd zkevm-testvectors/tools/ethereum-tests
git clone https://github.com/0xPolygonHermez/ethereum-tests tests
cd tests
Expand Down
2 changes: 1 addition & 1 deletion tools/full-tracer-tests/full-tracer-tests-prover.js
Original file line number Diff line number Diff line change
Expand Up @@ -588,7 +588,7 @@ function compareDefaultTrace(geth, fullTracer, i) {
// memSize?
stack: step.stack,
depth: step.depth,
// returndata?
returnData: step.return_data,
};
if (Number(step.gas_refund) > 0) {
newStep.refund = Number(step.gas_refund);
Expand Down
2 changes: 1 addition & 1 deletion tools/full-tracer-tests/full-tracer-tests.js
Original file line number Diff line number Diff line change
Expand Up @@ -531,7 +531,7 @@ async function compareDefaultTracer(geth, fullTracer, i) {
// memSize?
stack: step.stack,
depth: step.depth,
// returndata?
returnData: step.return_data,
};
if (Number(step.gas_refund) > 0) {
newStep.refund = Number(step.gas_refund);
Expand Down

0 comments on commit 107a090

Please sign in to comment.