mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
[SMTChecker] Fix in abi handling - fixed missing type conversion
This commit is contained in:
parent
32a923c7ef
commit
b4d2a71eec
@ -773,7 +773,7 @@ void SMTEncoder::visitABIFunction(FunctionCall const& _funCall)
|
||||
|
||||
optional<smtutil::Expression> arg;
|
||||
if (inTypes.size() == 1)
|
||||
arg = expr(*args.at(0));
|
||||
arg = expr(*args.at(0), inTypes.at(0));
|
||||
else
|
||||
{
|
||||
auto inputSort = dynamic_cast<smtutil::ArraySort&>(*symbFunction.sort).domain;
|
||||
|
Loading…
Reference in New Issue
Block a user