Fix up rvalue references. Avoid a copy of an EVM code in ExtVM.

This commit is contained in:
Paweł Bylica 2015-07-06 09:22:09 +02:00
parent c7628aace0
commit befbeba512

View File

@ -199,10 +199,10 @@ void ImportTest::importState(json_spirit::mObject& _o, State& _state, stateOptio
stateOptions.m_bHasCode = true;
}
if (code.size())
if (!code.empty())
{
_state.m_cache[address] = Account(balance, Account::ContractConception);
_state.m_cache[address].setCode(code);
_state.m_cache[address].setCode(std::move(code));
}
else
_state.m_cache[address] = Account(balance, Account::NormalCreation);