aboutsummaryrefslogtreecommitdiffstats
path: root/vm.h
diff options
context:
space:
mode:
authorChristoph Jentzsch <jentzsch.software@gmail.com>2014-10-31 16:41:02 +0800
committerChristoph Jentzsch <jentzsch.software@gmail.com>2014-10-31 16:41:02 +0800
commit3d17d7b2f13545914647fd5d3eaceda3a8646fc4 (patch)
tree4efa97f80111301c70a0a6b1be32d1734745ba9a /vm.h
parent7f4fa9e2e1f9cce17bccbc6259dd95ca0c9a9876 (diff)
downloaddexon-solidity-3d17d7b2f13545914647fd5d3eaceda3a8646fc4.tar.gz
dexon-solidity-3d17d7b2f13545914647fd5d3eaceda3a8646fc4.tar.zst
dexon-solidity-3d17d7b2f13545914647fd5d3eaceda3a8646fc4.zip
Clean up FakeExtVM - move to state tests
Diffstat (limited to 'vm.h')
-rw-r--r--vm.h9
1 files changed, 0 insertions, 9 deletions
diff --git a/vm.h b/vm.h
index 632aa996..7c1b8a3b 100644
--- a/vm.h
+++ b/vm.h
@@ -41,13 +41,6 @@ namespace dev { namespace test {
struct FakeExtVMFailure : virtual Exception {};
-//class FakeState: public eth::State
-//{
-//public:
-// /// Execute a contract-creation transaction.
-// h160 createNewAddress(Address _newAddress, Address _txSender, u256 _endowment, u256 _gasPrice, u256* _gas, bytesConstRef _code, Address _originAddress = {}, eth::SubState* o_sub = nullptr, eth::Manifest* o_ms = nullptr, eth::OnOpFunc const& _onOp = {}, unsigned _level = 0);
-//};
-
class FakeExtVM: public eth::ExtVMFace
{
public:
@@ -82,7 +75,6 @@ public:
void importCallCreates(json_spirit::mArray& _callcreates);
eth::OnOpFunc simpleTrace();
- //FakeState state() const { return m_s; }
std::map<Address, std::tuple<u256, u256, std::map<u256, u256>, bytes>> addresses;
eth::Transactions callcreates;
@@ -91,7 +83,6 @@ public:
u256 gas;
private:
- //FakeState m_s;
eth::Manifest m_ms;
};