Skip to content
This repository has been archived by the owner on Oct 28, 2021. It is now read-only.

Commit

Permalink
Fix tests after rebase
Browse files Browse the repository at this point in the history
  • Loading branch information
gumb0 committed Sep 24, 2019
1 parent bdf044f commit 0271da8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libevm/ExtVMFace.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ evmc_storage_status EvmCHost::set_storage(
EVMSchedule const& schedule = m_extVM.evmSchedule();
auto status = EVMC_STORAGE_MODIFIED;
u256 const originalValue = m_extVM.originalStorageValue(index);
if (originalValue == currentValue || !schedule.eip1283Mode)
if (originalValue == currentValue || !schedule.sstoreNetGasMetering())
{
if (currentValue == 0)
status = EVMC_STORAGE_ADDED;
Expand Down

0 comments on commit 0271da8

Please sign in to comment.