Keep long format in vm output

This commit is contained in:
Roman Mandeleil 2015-01-23 10:50:25 +02:00
parent c87a5c3cb6
commit 9d03fc5166
1 changed files with 3 additions and 3 deletions

View File

@ -63,8 +63,8 @@ public class Op {
Collections.sort(keys);
for (DataWord key : keys) {
DataWord value = storage.get(key);
this.storage.put(Hex.toHexString(key.getNoLeadZeroesData()),
Hex.toHexString(value.getNoLeadZeroesData()));
this.storage.put(Hex.toHexString(key.getData()),
Hex.toHexString(value.getData()));
}
}
@ -78,7 +78,7 @@ public class Op {
this.stack = new ArrayList<>();
for (DataWord element : stack) {
this.stack.add(0, Hex.toHexString(element.getNoLeadZeroesData()));
this.stack.add(0, Hex.toHexString(element.getData()));
}
}