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

Commit

Permalink
evm: Remove unused field from EVMC
Browse files Browse the repository at this point in the history
  • Loading branch information
chfast committed Nov 20, 2018
1 parent 9952ab6 commit 57531b9
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion libevm/EVMC.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,6 @@ owning_bytes_ref EVMC::exec(u256& io_gas, ExtVMFace& _ext, const OnOpFunc& _onOp

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

m_prevCall = m_currentCall;
m_currentCall = parentCall;

m_code = prevCode;
Expand Down
1 change: 0 additions & 1 deletion libevm/EVMC.h
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,6 @@ class EVMC : public EVM, public VMFace

std::vector<CallTrace> m_calls;
size_t m_currentCall = 0;
size_t m_prevCall = 0;

void dumpTrace();
};
Expand Down

0 comments on commit 57531b9

Please sign in to comment.