mirror of
https://github.com/fluencelabs/js-libp2p
synced 2025-04-05 09:11:03 +00:00
23 lines
465 B
JavaScript
23 lines
465 B
JavaScript
|
'use strict'
|
||
|
|
||
|
const Libp2p = require('../../../src')
|
||
|
const secio = require('libp2p-secio')
|
||
|
|
||
|
class TestNode extends Libp2p {
|
||
|
constructor (peerInfo, transports, muxer, options) {
|
||
|
options = options || {}
|
||
|
|
||
|
const modules = {
|
||
|
transport: transports,
|
||
|
connection: {
|
||
|
muxer: [muxer],
|
||
|
crypto: options.isCrypto ? [secio] : null
|
||
|
},
|
||
|
discovery: []
|
||
|
}
|
||
|
super(modules, peerInfo, null, options)
|
||
|
}
|
||
|
}
|
||
|
|
||
|
module.exports = TestNode
|