Skip to content

Commit

Permalink
1545 Fix pull request comment
Browse files Browse the repository at this point in the history
  • Loading branch information
kladkogex committed Dec 16, 2024
1 parent e26801e commit e40a7d9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/unittests/libevm/VMTest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -429,11 +429,11 @@ class SstoreTestFixture : public TestOutputHelperFixture {
ExtVM extVm( state, envInfo, se->chainParams(), to, from, from, value, gasPrice, inputData, ref( code ),
sha3( code ), version, depth, isCreate, staticCall );

// u256 gasBefore = gas;
u256 gasBefore = gas;
owning_bytes_ref ret = vm->exec( gas, extVm, OnOpFunc{} );

// BOOST_CHECK_EQUAL( gasBefore - gas, _expectedGasConsumed );
// BOOST_CHECK_EQUAL( extVm.sub.refunds, _expectedRefund );
BOOST_CHECK_EQUAL( gasBefore - gas, _expectedGasConsumed );
BOOST_CHECK_EQUAL( extVm.sub.refunds, _expectedRefund );
}


Expand Down

0 comments on commit e40a7d9

Please sign in to comment.