decode enum

pull/7/head
yann300 8 years ago
parent 8798eeef8f
commit f574ee65de
  1. 19
      src/solidity/types/Enum.js

@ -16,8 +16,23 @@ function Enum (enumDef) {
Enum.prototype.decodeFromStorage = function (location, storageContent) { Enum.prototype.decodeFromStorage = function (location, storageContent) {
var value = util.extractHexValue(location, storageContent, this.storageBytes) var value = util.extractHexValue(location, storageContent, this.storageBytes)
value = parseInt(value, 16) value = parseInt(value, 16)
if (this.enumDef.children.length > value) { return output(value, this.enumDef)
return this.enumDef.children[value].attributes.name }
Enum.prototype.decodeLocals = function (stackHeight, stack, memory) {
var defaultValue = 0
if (stack.length - 1 < stackHeight) {
defaultValue = 0
} else {
defaultValue = util.extractHexByteSlice(stack[stack.length - 1 - stackHeight], this.storageBytes, 0)
defaultValue = parseInt(defaultValue, 16)
}
return output(defaultValue, this.enumDef)
}
function output (value, enumDef) {
if (enumDef.children.length > value) {
return enumDef.children[value].attributes.name
} else { } else {
return 'INVALID_ENUM<' + value + '>' return 'INVALID_ENUM<' + value + '>'
} }

Loading…
Cancel
Save