Revert standard size for CALLDATALOAD to 32 bytes

This commit is contained in:
nicksavers 2014-08-23 23:57:36 +02:00
parent 99522657ef
commit 4b722c9aa7
1 changed files with 1 additions and 1 deletions

View File

@ -152,7 +152,7 @@ public class ProgramInvokeImpl implements ProgramInvoke {
if (index + size > msgData.length)
size = msgData.length - index;
byte[] data = new byte[size];
byte[] data = new byte[32];
System.arraycopy(msgData, index, data, 0, size);
return new DataWord(data);
}