Yul proto fuzzer: Fix typo in low level call

This commit is contained in:
Bhargava Shastry 2019-09-04 21:14:26 +02:00
parent 049e950085
commit 137a898eca

View File

@ -741,7 +741,7 @@ void ProtoConverter::visit(LowLevelCall const& _x)
m_output << ", "; m_output << ", ";
visit(_x.addr()); visit(_x.addr());
m_output << ", "; m_output << ", ";
if (type == LowLevelCall::CALL || LowLevelCall::CALLCODE) if (type == LowLevelCall::CALL || type == LowLevelCall::CALLCODE)
{ {
visit(_x.wei()); visit(_x.wei());
m_output << ", "; m_output << ", ";