aboutsummaryrefslogtreecommitdiffstats
path: root/vm.h
diff options
context:
space:
mode:
authorPaweł Bylica <pawel.bylica@imapp.pl>2014-10-22 18:54:31 +0800
committerPaweł Bylica <pawel.bylica@imapp.pl>2014-10-22 18:54:31 +0800
commite987e1a69289fcf05abb25a3d087681b8347b021 (patch)
tree9da1bd674a934bca0f061bcba049a5a22cb10200 /vm.h
parent95e7e44c0895c76f1bb8b105c6c76658e401a34b (diff)
downloaddexon-solidity-e987e1a69289fcf05abb25a3d087681b8347b021.tar.gz
dexon-solidity-e987e1a69289fcf05abb25a3d087681b8347b021.tar.zst
dexon-solidity-e987e1a69289fcf05abb25a3d087681b8347b021.zip
Drop universal initializer in some places
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 3a0091a0..d9dca1d7 100644
--- a/vm.h
+++ b/vm.h
@@ -44,7 +44,7 @@ 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 = Address(), std::set<Address>* o_suicides = nullptr, eth::Manifest* o_ms = nullptr, eth::OnOpFunc const& _onOp = eth::OnOpFunc(), unsigned _level = 0);
+ h160 createNewAddress(Address _newAddress, Address _txSender, u256 _endowment, u256 _gasPrice, u256* _gas, bytesConstRef _code, Address _originAddress = {}, std::set<Address>* o_suicides = nullptr, eth::Manifest* o_ms = nullptr, eth::OnOpFunc const& _onOp = {}, unsigned _level = 0);
};
class FakeExtVM: public eth::ExtVMFace