Naming is hard :D
This commit is contained in:
parent
cd917ebc35
commit
5215b60021
@ -1,7 +1,7 @@
|
||||
const ethers = require('ethers');
|
||||
const RSVP = require('rsvp');
|
||||
|
||||
const PreflightChecker = require('./utils/preflight_checker');
|
||||
const Preflight = require('./utils/preflight');
|
||||
|
||||
const ABIS = {
|
||||
Contributors: require('./abis/Contributors.json'),
|
||||
@ -98,7 +98,7 @@ class Kredits {
|
||||
}
|
||||
|
||||
preflightChecks() {
|
||||
return new PreflightChecker(this).check();
|
||||
return new Preflight(this).check();
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
class PreflightChecker {
|
||||
class Preflight {
|
||||
constructor(kredits) {
|
||||
this.kredits = kredits;
|
||||
}
|
||||
@ -25,4 +25,4 @@ class PreflightChecker {
|
||||
}
|
||||
}
|
||||
|
||||
module.exports = PreflightChecker;
|
||||
module.exports = Preflight;
|
Loading…
x
Reference in New Issue
Block a user