fix comment handling

This commit is contained in:
Matias Alejo Garcia 2014-08-06 15:56:17 -03:00
commit ddc8649bd3
4 changed files with 8 additions and 6 deletions

View file

@ -1,6 +1,5 @@
'use strict';
var imports = require('soop').imports();
var bitcore = require('bitcore');
function FakeBlockchain(opts) {
@ -47,4 +46,4 @@ FakeBlockchain.prototype.sendRawTransaction = function(rawtx, cb) {
return cb(txid);
};
module.exports = require('soop')(FakeBlockchain);
module.exports = FakeBlockchain;