Files
bch-dex/test/unit/mocks/ipfs-coord-mock.js
T

16 lines
182 B
JavaScript

/*
Mocks for the ipfs-coord library
*/
class IPFSCoord {
async isReady () {
return true
}
async start () {}
async subscribeToChat() {}
}
module.exports = IPFSCoord