Files
ipfs-bch-wallet-service/test/unit/mocks/ipfs-coord-mock.js
T
2022-09-08 08:58:39 -07:00

16 lines
181 B
JavaScript

/*
Mocks for the ipfs-coord library
*/
class IPFSCoord {
async isReady () {
return true
}
async start () {}
async subscribeToChat() {}
}
export default IPFSCoord;