diff options
author | subtly <subtly@users.noreply.github.com> | 2014-11-04 01:17:31 +0800 |
---|---|---|
committer | subtly <subtly@users.noreply.github.com> | 2014-11-04 01:17:31 +0800 |
commit | 9557fea39c3d4b7e2542f405769cdb290466176f (patch) | |
tree | 91cea04956a65faca56b23f7cfe4a8bdeffcbc2f /vm.cpp | |
parent | 51fea10bbe20ccf632eff1db30eb4c7dc62ce3c0 (diff) | |
parent | 07d08e3af3afb99014cec91d39ce0ca36d710517 (diff) | |
download | dexon-solidity-9557fea39c3d4b7e2542f405769cdb290466176f.tar dexon-solidity-9557fea39c3d4b7e2542f405769cdb290466176f.tar.gz dexon-solidity-9557fea39c3d4b7e2542f405769cdb290466176f.tar.bz2 dexon-solidity-9557fea39c3d4b7e2542f405769cdb290466176f.tar.lz dexon-solidity-9557fea39c3d4b7e2542f405769cdb290466176f.tar.xz dexon-solidity-9557fea39c3d4b7e2542f405769cdb290466176f.tar.zst dexon-solidity-9557fea39c3d4b7e2542f405769cdb290466176f.zip |
Merge branch 'develop' into cryptable
Diffstat (limited to 'vm.cpp')
-rw-r--r-- | vm.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -471,7 +471,7 @@ h160 FakeState::createNewAddress(Address _newAddress, Address _sender, u256 _end } // Set up new account... - m_cache[_newAddress] = AddressState(0, balance(_newAddress) + _endowment, h256(), h256()); + m_cache[_newAddress] = Account(0, balance(_newAddress) + _endowment, h256(), h256()); // Execute init code. VM vm(*_gas); |