aboutsummaryrefslogtreecommitdiffstats
path: root/vm.cpp
diff options
context:
space:
mode:
authorPaweł Bylica <pawel.bylica@imapp.pl>2014-10-31 19:35:51 +0800
committerPaweł Bylica <pawel.bylica@imapp.pl>2014-10-31 19:35:51 +0800
commitd56553dfb6e4392a27a34c037c8413621d714010 (patch)
tree89dff63487ab1f051b9906db7d6d1b865c925335 /vm.cpp
parent609d4600255b7d9273995182d2a6148d208398a4 (diff)
parentbf763824f327c956392cd527c30d57bb3ec6fe1f (diff)
downloaddexon-solidity-d56553dfb6e4392a27a34c037c8413621d714010.tar.gz
dexon-solidity-d56553dfb6e4392a27a34c037c8413621d714010.tar.zst
dexon-solidity-d56553dfb6e4392a27a34c037c8413621d714010.zip
Merge branch 'develop' into develop-evmcc
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 102de7c4..26b9abad 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.
auto vmObj = VMFace::create(getVMKind(), *_gas);