Skip to content

Commit 92cd9d5

Browse files
committed
linter fix
1 parent cc7173e commit 92cd9d5

File tree

3 files changed

+2
-5
lines changed

3 files changed

+2
-5
lines changed

apps/remix-ide/src/app/compiler/compiler-artefacts.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ module.exports = class CompilerArtefacts extends Plugin {
6767
return contractsData
6868
}
6969

70-
getCompilerAbstract(file) {
70+
getCompilerAbstract (file) {
7171
return this.compilersArtefactsPerFile[file]
7272
}
7373

apps/remix-ide/src/app/compiler/compiler-sourceVerifier-fetchAndCompile.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,6 @@ export default class FetchAndCompile extends Plugin {
3535

3636
const localCompilation = () => compilersartefacts.get(contractAddress) ? compilersartefacts.get(contractAddress) : compilersartefacts.get('__last') ? compilersartefacts.get('__last') : null
3737

38-
console.log("localCompilation - ", localCompilation)
3938
const resolved = compilersartefacts.get(contractAddress)
4039
if (resolved) return resolved
4140
if (this.unresolvedAddresses.includes(contractAddress)) return localCompilation()
@@ -55,7 +54,6 @@ export default class FetchAndCompile extends Plugin {
5554
// check if the contract if part of the local compilation result
5655
const codeAtAddress = await web3.eth.getCode(contractAddress)
5756
const compilation = localCompilation()
58-
console.log("compilationResult= ", compilation)
5957
if (compilation) {
6058
let found = false
6159
compilation.visitContracts((contract) => {

apps/remix-ide/src/app/tabs/runTab/contractDropdown.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@ class ContractDropdownUI {
2727

2828
listenToEvents () {
2929
this.dropdownLogic.event.register('newlyCompiled', (success, data, source, compiler, compilerFullName, file) => {
30-
3130
if (!this.selectContractNames) return
3231
this.selectContractNames.innerHTML = ''
3332
if (success) {
@@ -281,7 +280,7 @@ class ContractDropdownUI {
281280
}
282281
}
283282

284-
let self = this
283+
const self = this
285284

286285
var promptCb = (okCb, cancelCb) => {
287286
modalDialogCustom.promptPassphrase('Passphrase requested', 'Personal mode is enabled. Please provide passphrase of account', '', okCb, cancelCb)

0 commit comments

Comments
 (0)