diff options
author | Gav Wood <i@gavwood.com> | 2014-10-08 23:51:51 +0800 |
---|---|---|
committer | Gav Wood <i@gavwood.com> | 2014-10-08 23:51:51 +0800 |
commit | 9e27cb00da163ae797de8ae334e549ec2068fd2e (patch) | |
tree | 5cec8fd2a5ebb18f779f916de508c711fe2a34f2 /vm.cpp | |
parent | f24a017a06be2eff2329ae62391c3c7c1ea6e324 (diff) | |
download | dexon-solidity-9e27cb00da163ae797de8ae334e549ec2068fd2e.tar.gz dexon-solidity-9e27cb00da163ae797de8ae334e549ec2068fd2e.tar.zst dexon-solidity-9e27cb00da163ae797de8ae334e549ec2068fd2e.zip |
PoC-7: Maximum recursion limit 1024.
Diffstat (limited to 'vm.cpp')
-rw-r--r-- | vm.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -31,8 +31,8 @@ using namespace dev; using namespace dev::eth; using namespace dev::test; -FakeExtVM::FakeExtVM(eth::BlockInfo const& _previousBlock, eth::BlockInfo const& _currentBlock): - ExtVMFace(Address(), Address(), Address(), 0, 1, bytesConstRef(), bytesConstRef(), _previousBlock, _currentBlock) {} +FakeExtVM::FakeExtVM(eth::BlockInfo const& _previousBlock, eth::BlockInfo const& _currentBlock, unsigned _depth): /// TODO: XXX: remove the default argument & fix. + ExtVMFace(Address(), Address(), Address(), 0, 1, bytesConstRef(), bytesConstRef(), _previousBlock, _currentBlock, _depth) {} h160 FakeExtVM::create(u256 _endowment, u256* _gas, bytesConstRef _init, OnOpFunc) { |