diff options
author | Christoph Jentzsch <jentzsch.software@gmail.com> | 2014-10-28 00:23:17 +0800 |
---|---|---|
committer | Christoph Jentzsch <jentzsch.software@gmail.com> | 2014-10-28 00:23:17 +0800 |
commit | f6e60137e96dd98ca6960c960e5ae5006f13af36 (patch) | |
tree | 6127d5b924439d7697257dae9fc0f29bd50d5692 | |
parent | fb2157445522a857e05f8c4b9ee5d43755f92c14 (diff) | |
download | dexon-solidity-f6e60137e96dd98ca6960c960e5ae5006f13af36.tar.gz dexon-solidity-f6e60137e96dd98ca6960c960e5ae5006f13af36.tar.zst dexon-solidity-f6e60137e96dd98ca6960c960e5ae5006f13af36.zip |
bugfix
-rw-r--r-- | vm.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -56,7 +56,7 @@ h160 FakeExtVM::create(u256 _endowment, u256* _gas, bytesConstRef _init, OnOpFun get<3>(addresses[ret]) = m_s.code(ret); } - t.receiveAddress = ret; + t.receiveAddress = Address(); callcreates.push_back(t); return ret; } |