Naming is hard :D

This commit is contained in:
bumi 2018-06-07 16:32:18 +02:00
parent cd917ebc35
commit 5215b60021
2 changed files with 4 additions and 4 deletions

View File

@ -1,7 +1,7 @@
const ethers = require('ethers'); const ethers = require('ethers');
const RSVP = require('rsvp'); const RSVP = require('rsvp');
const PreflightChecker = require('./utils/preflight_checker'); const Preflight = require('./utils/preflight');
const ABIS = { const ABIS = {
Contributors: require('./abis/Contributors.json'), Contributors: require('./abis/Contributors.json'),
@ -98,7 +98,7 @@ class Kredits {
} }
preflightChecks() { preflightChecks() {
return new PreflightChecker(this).check(); return new Preflight(this).check();
} }
} }

View File

@ -1,4 +1,4 @@
class PreflightChecker { class Preflight {
constructor(kredits) { constructor(kredits) {
this.kredits = kredits; this.kredits = kredits;
} }
@ -25,4 +25,4 @@ class PreflightChecker {
} }
} }
module.exports = PreflightChecker; module.exports = Preflight;