pull/2790/head
bunsenstraat 2 years ago
parent 70a5317e29
commit c9af11963c
  1. 2
      libs/remix-ui/editor/src/lib/providers/completionProvider.ts

@ -310,7 +310,7 @@ export class RemixCompletionProvider implements languages.CompletionItemProvider
nodes = [...Object.values(fileNodes.imports), ...nodes]
// at the nodes at the block itself
nodes = [...nodes, ...await this.getBlockNodesAtPosition(position)]
// filter private nodes, only allow them when contract ID is the same as the current contract
// filter private nodes, only allow them when contract ID is the same as the current contract
nodes = nodes.filter(node => {
if (node.visibility) {
if (node.visibility === 'private') {

Loading…
Cancel
Save