diff options
author | Gav Wood <i@gavwood.com> | 2014-12-24 18:36:08 +0800 |
---|---|---|
committer | Gav Wood <i@gavwood.com> | 2014-12-24 18:36:08 +0800 |
commit | be5989f134a6aaa6cb50c12ece79a47fc948803b (patch) | |
tree | c72399d715735d66b95f79380b0afd4d0e987a18 /vm.cpp | |
parent | f4eab75fffb9c58e00e5cb114a70e4c4606699c5 (diff) | |
download | dexon-solidity-be5989f134a6aaa6cb50c12ece79a47fc948803b.tar dexon-solidity-be5989f134a6aaa6cb50c12ece79a47fc948803b.tar.gz dexon-solidity-be5989f134a6aaa6cb50c12ece79a47fc948803b.tar.bz2 dexon-solidity-be5989f134a6aaa6cb50c12ece79a47fc948803b.tar.lz dexon-solidity-be5989f134a6aaa6cb50c12ece79a47fc948803b.tar.xz 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.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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&) { |