mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
PV46. Minor protocol alterations.
This commit is contained in:
parent
0cd1e76553
commit
8d0a664740
2
vm.cpp
2
vm.cpp
@ -149,7 +149,7 @@ void FakeExtVM::importLog(mObject& _o)
|
||||
LogEntry log;
|
||||
log.address = Address(o["address"].get_str());
|
||||
for (auto const& t: o["topics"].get_array())
|
||||
log.topics.insert(h256(t.get_str()));
|
||||
log.topics.push_back(h256(t.get_str()));
|
||||
log.data = importData(o);
|
||||
sub.logs.push_back(log);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user