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

Commit b025be0

Browse files
committed
Fix tests after rebase
1 parent 49b2310 commit b025be0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libevm/ExtVMFace.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ evmc_storage_status EvmCHost::set_storage(
4242
EVMSchedule const& schedule = m_extVM.evmSchedule();
4343
auto status = EVMC_STORAGE_MODIFIED;
4444
u256 const originalValue = m_extVM.originalStorageValue(index);
45-
if (originalValue == currentValue || !schedule.eip1283Mode)
45+
if (originalValue == currentValue || !schedule.sstoreNetGasMetering())
4646
{
4747
if (currentValue == 0)
4848
status = EVMC_STORAGE_ADDED;

0 commit comments

Comments
 (0)