Remove unused function

This commit is contained in:
Paweł Bylica 2014-12-23 00:49:01 +01:00
parent eaed9c3c4f
commit 6acbfe07b2
2 changed files with 0 additions and 6 deletions

View file

@ -35,11 +35,6 @@ Runtime::~Runtime()
g_currJmpBuf = m_prevJmpBuf; g_currJmpBuf = m_prevJmpBuf;
} }
u256 Runtime::getGas() const
{
return llvm2eth(m_data.elems[RuntimeData::Gas]);
}
bytes Runtime::getReturnData() const // FIXME: Reconsider returning by copy bytes Runtime::getReturnData() const // FIXME: Reconsider returning by copy
{ {
// TODO: Handle large indexes // TODO: Handle large indexes

View file

@ -41,7 +41,6 @@ public:
MemoryImpl& getMemory() { return m_memory; } MemoryImpl& getMemory() { return m_memory; }
Env* getEnvPtr() { return &m_env; } Env* getEnvPtr() { return &m_env; }
u256 getGas() const;
bytes getReturnData() const; bytes getReturnData() const;
jmp_buf_ref getJmpBuf() { return m_jmpBuf; } jmp_buf_ref getJmpBuf() { return m_jmpBuf; }
static jmp_buf_ref getCurrJmpBuf(); static jmp_buf_ref getCurrJmpBuf();