Rename healthcheck to preflight

This commit was merged in pull request #49.
This commit is contained in:
2018-06-07 14:39:07 +00:00
committed by Sebastian Kippe
parent 8a7abba486
commit 956f858620
2 changed files with 5 additions and 5 deletions

View File

@@ -1,7 +1,7 @@
const ethers = require('ethers');
const RSVP = require('rsvp');
const Healthcheck = require('./utils/healthcheck');
const Preflight = require('./utils/preflight');
const ABIS = {
Contributors: require('./abis/Contributors.json'),
@@ -97,8 +97,8 @@ class Kredits {
return this.contracts[name];
}
healthcheck() {
return new Healthcheck(this).check();
preflightChecks() {
return new Preflight(this).check();
}
}