fix input parameters

pull/5370/head
yann300 4 years ago
parent f8f7ca87a6
commit 330b131fed
  1. 4
      libs/remix-debug/src/solidity-decoder/types/StringType.ts
  2. 2
      libs/remix-debug/src/solidity-decoder/types/ValueType.ts

@ -20,9 +20,9 @@ export class StringType extends DynamicByteArray {
return format(decoded) return format(decoded)
} }
async decodeFromStack (stackDepth, stack, memory, calldata, variableDetails?) { async decodeFromStack (stackDepth, stack, memory, storageResolver, calldata, cursor, variableDetails?) {
try { try {
return await super.decodeFromStack(stackDepth, stack, memory, null, calldata, variableDetails) return await super.decodeFromStack(stackDepth, stack, memory, storageResolver, calldata, cursor, variableDetails)
} catch (e) { } catch (e) {
console.log(e) console.log(e)
return { error: '<decoding failed - ' + e.message + '>' } return { error: '<decoding failed - ' + e.message + '>' }

@ -43,7 +43,7 @@ export class ValueType {
* @param {String} - memory * @param {String} - memory
* @return {Object} - decoded value * @return {Object} - decoded value
*/ */
async decodeFromStack (stackDepth, stack, memory, calldata, variableDetails?) { async decodeFromStack (stackDepth, stack, memory, storageResolver, calldata, cursor, variableDetails?) {
let value let value
if (stackDepth >= stack.length) { if (stackDepth >= stack.length) {
value = this.decodeValue('') value = this.decodeValue('')

Loading…
Cancel
Save