mirror of https://github.com/embarklabs/embark.git
fix line
This commit is contained in:
parent
358c9b2531
commit
52462dbd3c
|
@ -3,7 +3,7 @@ const Viz = require('viz.js');
|
||||||
const fs = require('fs');
|
const fs = require('fs');
|
||||||
|
|
||||||
class GraphGenerator {
|
class GraphGenerator {
|
||||||
constructor(embark, options) {
|
constructor(embark, _options) {
|
||||||
const self = this;
|
const self = this;
|
||||||
this.events = embark.events;
|
this.events = embark.events;
|
||||||
this.contracts = [];
|
this.contracts = [];
|
||||||
|
@ -145,7 +145,7 @@ class GraphGenerator {
|
||||||
}
|
}
|
||||||
|
|
||||||
getContract(contractName) {
|
getContract(contractName) {
|
||||||
return this.contracts.find((contract) => { return contract.className === contractName });
|
return this.contracts.find((contract) => { return contract.className === contractName; });
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue