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

Commit 57531b9

Browse files
committed
evm: Remove unused field from EVMC
1 parent 9952ab6 commit 57531b9

File tree

2 files changed

+0
-2
lines changed

2 files changed

+0
-2
lines changed

libevm/EVMC.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,6 @@ owning_bytes_ref EVMC::exec(u256& io_gas, ExtVMFace& _ext, const OnOpFunc& _onOp
103103

104104
EVM::Result r = execute(_ext, gas);
105105

106-
m_prevCall = m_currentCall;
107106
m_currentCall = parentCall;
108107

109108
m_code = prevCode;

libevm/EVMC.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,6 @@ class EVMC : public EVM, public VMFace
118118

119119
std::vector<CallTrace> m_calls;
120120
size_t m_currentCall = 0;
121-
size_t m_prevCall = 0;
122121

123122
void dumpTrace();
124123
};

0 commit comments

Comments
 (0)