Merge pull request #2283 from ethereum/yann300-patch-42

Ensure empty  map is returned
pull/2282/head
yann300 3 years ago committed by GitHub
commit 4805669772
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      libs/remix-solidity/src/compiler/compiler-abstract.ts

@ -14,7 +14,7 @@ export class CompilerAbstract {
} }
getContracts () { getContracts () {
return this.data.contracts return this.data.contracts || {}
} }
getContract (name) { getContract (name) {

Loading…
Cancel
Save