This commit is contained in:
romanman 2014-06-03 20:09:29 +03:00
parent 2a3a548339
commit 64cb2898aa
1 changed files with 2 additions and 1 deletions

View File

@ -3,6 +3,7 @@ package org.ethereum.vm;
import org.ethereum.util.Utils; import org.ethereum.util.Utils;
import org.slf4j.Logger; import org.slf4j.Logger;
import org.slf4j.LoggerFactory; import org.slf4j.LoggerFactory;
import org.spongycastle.util.encoders.Hex;
import java.math.BigInteger; import java.math.BigInteger;
import java.nio.ByteBuffer; import java.nio.ByteBuffer;
@ -314,7 +315,7 @@ public class Program {
global.append(" -- STORAGE -- ").append(storageData).append("\n"); global.append(" -- STORAGE -- ").append(storageData).append("\n");
if (hReturn != null){ if (hReturn != null){
global.append("\n HReturn: ").append(Hex.toHexString( hReturn.array())); global.append("\n HReturn: ").append(Hex.toHexString(hReturn.array()));
} }
if (listener != null){ if (listener != null){