Merge pull request #2704 from ethereum/newEncoder

New ABI encoder
This commit is contained in:
chriseth
2017-08-14 17:04:00 +02:00
committed by GitHub
13 changed files with 1530 additions and 72 deletions
-2
View File
@@ -1529,8 +1529,6 @@ TypePointer ArrayType::interfaceType(bool _inLibrary) const
TypePointer baseExt = m_baseType->interfaceType(_inLibrary);
if (!baseExt)
return TypePointer();
if (m_baseType->category() == Category::Array && m_baseType->isDynamicallySized())
return TypePointer();
if (isDynamicallySized())
return make_shared<ArrayType>(DataLocation::Memory, baseExt);