aboutsummaryrefslogtreecommitdiffstats
path: root/vm.cpp
diff options
context:
space:
mode:
authorsubtly <subtly@users.noreply.github.com>2014-11-04 01:17:31 +0800
committersubtly <subtly@users.noreply.github.com>2014-11-04 01:17:31 +0800
commit9557fea39c3d4b7e2542f405769cdb290466176f (patch)
tree91cea04956a65faca56b23f7cfe4a8bdeffcbc2f /vm.cpp
parent51fea10bbe20ccf632eff1db30eb4c7dc62ce3c0 (diff)
parent07d08e3af3afb99014cec91d39ce0ca36d710517 (diff)
downloaddexon-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.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/vm.cpp b/vm.cpp
index 76ed41a4..617cb95c 100644
--- a/vm.cpp
+++ b/vm.cpp
@@ -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);