Bugfix: Tag takes one byte (for JUMPDEST)

This commit is contained in:
Christian 2014-10-29 00:13:26 +01:00
parent bded2ff372
commit f6e24989ec

View File

@ -54,6 +54,7 @@ unsigned Assembly::bytesRequired() const
switch (i.m_type)
{
case Operation:
case Tag: // 1 byte for the JUMPDEST
ret++;
break;
case PushString:
@ -69,7 +70,6 @@ unsigned Assembly::bytesRequired() const
case PushData:
case PushSub:
ret += 1 + br;
case Tag:;
default:;
}
if (dev::bytesRequired(ret) <= br)