aboutsummaryrefslogtreecommitdiffstats
path: root/vm.cpp
diff options
context:
space:
mode:
authorGav Wood <i@gavwood.com>2014-12-24 18:36:08 +0800
committerGav Wood <i@gavwood.com>2014-12-24 18:36:08 +0800
commitbe5989f134a6aaa6cb50c12ece79a47fc948803b (patch)
treec72399d715735d66b95f79380b0afd4d0e987a18 /vm.cpp
parentf4eab75fffb9c58e00e5cb114a70e4c4606699c5 (diff)
downloaddexon-solidity-be5989f134a6aaa6cb50c12ece79a47fc948803b.tar.gz
dexon-solidity-be5989f134a6aaa6cb50c12ece79a47fc948803b.tar.zst
dexon-solidity-be5989f134a6aaa6cb50c12ece79a47fc948803b.zip
Implemented 256-long history for PREVHASH, though still optional.
Diffstat (limited to 'vm.cpp')
-rw-r--r--vm.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/vm.cpp b/vm.cpp
index 920f0582..18bf5797 100644
--- a/vm.cpp
+++ b/vm.cpp
@@ -33,7 +33,7 @@ using namespace dev::eth;
using namespace dev::test;
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(), bytes(), _previousBlock, _currentBlock, _depth) {}
+ ExtVMFace(Address(), Address(), Address(), 0, 1, bytesConstRef(), bytes(), _previousBlock, _currentBlock, LastHashes(), _depth) {}
h160 FakeExtVM::create(u256 _endowment, u256& io_gas, bytesConstRef _init, OnOpFunc const&)
{