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

Commit 530da2d

Browse files
committed
Fix tests after rebase
1 parent 868f259 commit 530da2d

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
@@ -55,7 +55,7 @@ evmc_storage_status EvmCHost::set_storage(
5555
EVMSchedule const& schedule = m_extVM.evmSchedule();
5656
auto status = EVMC_STORAGE_MODIFIED;
5757
u256 const originalValue = m_extVM.originalStorageValue(index);
58-
if (originalValue == currentValue || !schedule.eip1283Mode)
58+
if (originalValue == currentValue || !schedule.sstoreNetGasMetering())
5959
{
6060
if (currentValue == 0)
6161
status = EVMC_STORAGE_ADDED;

0 commit comments

Comments
 (0)