embark/lib/contracts/blockchain.js

11 lines
152 B
JavaScript
Raw Normal View History

2018-05-18 20:51:03 +00:00
class Blockchain {
constructor(optiosn) {
this.plugins = options.plugins;
this.logger = options.logger;
}
}
module.exports = Blockchain;