fix linting

pull/1770/head
yann300 3 years ago
parent d1061b4c96
commit 1eaa56b142
  1. 2
      apps/remix-ide-e2e/src/tests/transactionExecution.spec.ts
  2. 2
      libs/remix-core-plugin/src/lib/compiler-artefacts.ts
  3. 4
      libs/remix-lib/src/execution/txExecution.ts

@ -200,7 +200,7 @@ module.exports = {
.journalLastChildIncludes('"documentation": "param3 from library"') .journalLastChildIncludes('"documentation": "param3 from library"')
.journalLastChildIncludes('Debug the transaction to get more information.') .journalLastChildIncludes('Debug the transaction to get more information.')
.end() .end()
}, }
} }
// @TODO test: bytes8[3][] type as input // @TODO test: bytes8[3][] type as input

@ -4,7 +4,7 @@ import { CompilerAbstract } from '@remix-project/remix-solidity'
const profile = { const profile = {
name: 'compilerArtefacts', name: 'compilerArtefacts',
methods: ['get', 'addResolvedContract', 'getCompilerAbstract' , 'getAllContractDatas'], methods: ['get', 'addResolvedContract', 'getCompilerAbstract', 'getAllContractDatas'],
events: [], events: [],
version: '0.0.1' version: '0.0.1'
} }

@ -133,7 +133,7 @@ export function checkVMError (execResult, compiledContracts) {
for (const input of functionDesc.inputs) { for (const input of functionDesc.inputs) {
const inputKey = input.name || inputIndex const inputKey = input.name || inputIndex
const v = decodedCustomErrorInputs[inputKey] const v = decodedCustomErrorInputs[inputKey]
decodedCustomErrorInputsClean[inputKey] = { decodedCustomErrorInputsClean[inputKey] = {
value: v.toString ? v.toString() : v value: v.toString ? v.toString() : v
} }
@ -145,7 +145,7 @@ export function checkVMError (execResult, compiledContracts) {
break break
} }
} }
} }
} }
} }
if (decodedCustomErrorInputsClean) { if (decodedCustomErrorInputsClean) {

Loading…
Cancel
Save