mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-21 20:26:41 +00:00
Remove unused function
This commit is contained in:
parent
eaed9c3c4f
commit
6acbfe07b2
2 changed files with 0 additions and 6 deletions
|
|
@ -35,11 +35,6 @@ Runtime::~Runtime()
|
|||
g_currJmpBuf = m_prevJmpBuf;
|
||||
}
|
||||
|
||||
u256 Runtime::getGas() const
|
||||
{
|
||||
return llvm2eth(m_data.elems[RuntimeData::Gas]);
|
||||
}
|
||||
|
||||
bytes Runtime::getReturnData() const // FIXME: Reconsider returning by copy
|
||||
{
|
||||
// TODO: Handle large indexes
|
||||
|
|
|
|||
|
|
@ -41,7 +41,6 @@ public:
|
|||
MemoryImpl& getMemory() { return m_memory; }
|
||||
Env* getEnvPtr() { return &m_env; }
|
||||
|
||||
u256 getGas() const;
|
||||
bytes getReturnData() const;
|
||||
jmp_buf_ref getJmpBuf() { return m_jmpBuf; }
|
||||
static jmp_buf_ref getCurrJmpBuf();
|
||||
|
|
|
|||
Loading…
Reference in a new issue