mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
style
This commit is contained in:
parent
dbcce8b7b9
commit
a6ba0f7908
@ -134,7 +134,7 @@ void doMyTests(json_spirit::mValue& v)
|
|||||||
o["pre"] = mValue(fev.exportState());
|
o["pre"] = mValue(fev.exportState());
|
||||||
|
|
||||||
fev.importExec(o["exec"].get_obj());
|
fev.importExec(o["exec"].get_obj());
|
||||||
if (!fev.code.size())
|
if (fev.code.empty())
|
||||||
{
|
{
|
||||||
fev.thisTxCode = get<3>(fev.addresses.at(fev.myAddress));
|
fev.thisTxCode = get<3>(fev.addresses.at(fev.myAddress));
|
||||||
fev.code = fev.thisTxCode;
|
fev.code = fev.thisTxCode;
|
||||||
|
2
vm.cpp
2
vm.cpp
@ -289,7 +289,7 @@ void doVMTests(json_spirit::mValue& v, bool _fillin)
|
|||||||
o["pre"] = mValue(fev.exportState());
|
o["pre"] = mValue(fev.exportState());
|
||||||
|
|
||||||
fev.importExec(o["exec"].get_obj());
|
fev.importExec(o["exec"].get_obj());
|
||||||
if (!fev.code.size())
|
if (fev.code.empty())
|
||||||
{
|
{
|
||||||
fev.thisTxCode = get<3>(fev.addresses.at(fev.myAddress));
|
fev.thisTxCode = get<3>(fev.addresses.at(fev.myAddress));
|
||||||
fev.code = fev.thisTxCode;
|
fev.code = fev.thisTxCode;
|
||||||
|
Loading…
Reference in New Issue
Block a user