Paweł Bylica
10 years ago
5 changed files with 55 additions and 13 deletions
@ -0,0 +1,18 @@ |
|||
|
|||
#include "ExecutionEngine.h" |
|||
|
|||
namespace evmcc |
|||
{ |
|||
|
|||
ExecutionEngine::ExecutionEngine() |
|||
{ |
|||
|
|||
} |
|||
|
|||
|
|||
int ExecutionEngine::run(const dev::bytes& bytecode) |
|||
{ |
|||
return 0; |
|||
} |
|||
|
|||
} |
@ -0,0 +1,17 @@ |
|||
|
|||
#pragma once |
|||
|
|||
#include <libdevcore/Common.h> |
|||
|
|||
namespace evmcc |
|||
{ |
|||
|
|||
class ExecutionEngine |
|||
{ |
|||
public: |
|||
ExecutionEngine(); |
|||
|
|||
int run(const dev::bytes& bytecode); |
|||
}; |
|||
|
|||
} |
Loading…
Reference in new issue