mirror of https://github.com/embarklabs/embark.git
11 lines
152 B
JavaScript
11 lines
152 B
JavaScript
|
|
||
|
class Blockchain {
|
||
|
constructor(optiosn) {
|
||
|
this.plugins = options.plugins;
|
||
|
this.logger = options.logger;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
module.exports = Blockchain;
|
||
|
|