aboutsummaryrefslogtreecommitdiffstats
path: root/vm.h
diff options
context:
space:
mode:
authorGav Wood <i@gavwood.com>2014-10-08 23:51:51 +0800
committerGav Wood <i@gavwood.com>2014-10-08 23:51:51 +0800
commit9e27cb00da163ae797de8ae334e549ec2068fd2e (patch)
tree5cec8fd2a5ebb18f779f916de508c711fe2a34f2 /vm.h
parentf24a017a06be2eff2329ae62391c3c7c1ea6e324 (diff)
downloaddexon-solidity-9e27cb00da163ae797de8ae334e549ec2068fd2e.tar.gz
dexon-solidity-9e27cb00da163ae797de8ae334e549ec2068fd2e.tar.zst
dexon-solidity-9e27cb00da163ae797de8ae334e549ec2068fd2e.zip
PoC-7: Maximum recursion limit 1024.
Diffstat (limited to 'vm.h')
-rw-r--r--vm.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/vm.h b/vm.h
index 5bad9d7d..a7147743 100644
--- a/vm.h
+++ b/vm.h
@@ -44,7 +44,7 @@ class FakeExtVM: public eth::ExtVMFace
{
public:
FakeExtVM() {}
- FakeExtVM(eth::BlockInfo const& _previousBlock, eth::BlockInfo const& _currentBlock);
+ FakeExtVM(eth::BlockInfo const& _previousBlock, eth::BlockInfo const& _currentBlock, unsigned _depth = 0);
u256 store(u256 _n) { return std::get<2>(addresses[myAddress])[_n]; }
void setStore(u256 _n, u256 _v) { std::get<2>(addresses[myAddress])[_n] = _v; }