aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarek Kotewicz <marek.kotewicz@gmail.com>2014-10-31 18:27:49 +0800
committerMarek Kotewicz <marek.kotewicz@gmail.com>2014-10-31 18:27:49 +0800
commit57ef1fbd9b48ed462d644cdd3dd1e353b6356a3e (patch)
treeed1ebe897bafd67afcd24c9517bb65b4a3206afc
parentf301ee29f77cbf876eb40a57ab44817bc4a3325b (diff)
parentbf763824f327c956392cd527c30d57bb3ec6fe1f (diff)
downloaddexon-solidity-57ef1fbd9b48ed462d644cdd3dd1e353b6356a3e.tar
dexon-solidity-57ef1fbd9b48ed462d644cdd3dd1e353b6356a3e.tar.gz
dexon-solidity-57ef1fbd9b48ed462d644cdd3dd1e353b6356a3e.tar.bz2
dexon-solidity-57ef1fbd9b48ed462d644cdd3dd1e353b6356a3e.tar.lz
dexon-solidity-57ef1fbd9b48ed462d644cdd3dd1e353b6356a3e.tar.xz
dexon-solidity-57ef1fbd9b48ed462d644cdd3dd1e353b6356a3e.tar.zst
dexon-solidity-57ef1fbd9b48ed462d644cdd3dd1e353b6356a3e.zip
Merge branch 'develop' into mk_jsonrpc
-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);