Commit 0ae9f9b5 authored by yann300's avatar yann300

fix input parameters

parent b0ddc0bd
......@@ -20,9 +20,9 @@ export class StringType extends DynamicByteArray {
return format(decoded)
}
async decodeFromStack (stackDepth, stack, memory, calldata, variableDetails?) {
async decodeFromStack (stackDepth, stack, memory, storageResolver, calldata, cursor, variableDetails?) {
try {
return await super.decodeFromStack(stackDepth, stack, memory, null, calldata, variableDetails)
return await super.decodeFromStack(stackDepth, stack, memory, storageResolver, calldata, cursor, variableDetails)
} catch (e) {
console.log(e)
return { error: '<decoding failed - ' + e.message + '>' }
......
......@@ -43,7 +43,7 @@ export class ValueType {
* @param {String} - memory
* @return {Object} - decoded value
*/
async decodeFromStack (stackDepth, stack, memory, calldata, variableDetails?) {
async decodeFromStack (stackDepth, stack, memory, storageResolver, calldata, cursor, variableDetails?) {
let value
if (stackDepth >= stack.length) {
value = this.decodeValue('')
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment