Skip to content

Commit

Permalink
Fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
Powersource committed Oct 20, 2023
1 parent 55d9754 commit e0f8e67
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 10 deletions.
6 changes: 3 additions & 3 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -358,12 +358,12 @@ function init (ssb, config) {
})
},
get: scuttle.group.getPOBox
},
}

// for internal use - ssb-ahau uses this for backups
// TODO: does ahau use this for backups though?
// i couldn't find a self.get function in box2 so we might have to add that if this is needed
//ownKeys: {
// ownKeys: {
// list (cb) {
// onKeystoreReady(() => {
// cb(null, [keystore.self.get()])
Expand All @@ -375,7 +375,7 @@ function init (ssb, config) {
// keystore.self.set(key, cb)
// })
// }
//}
// }
}
}

Expand Down
2 changes: 1 addition & 1 deletion method/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ module.exports = function Method (ssb) {
return {
group,

link,
link
// create createSubGroupLink findGroupByFeedId findParentGroupLinks findSubGroupLinks
}
}
7 changes: 1 addition & 6 deletions test/unbox.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,7 @@
const test = require('tape')
const pull = require('pull-stream')
const { promisify: p } = require('util')
const { decodeLeaves, Server, Run } = require('./helpers')

const vectors = [
require('./vectors/unbox1.json'),
require('./vectors/unbox2.json')
].map(decodeLeaves)
const { Server, Run } = require('./helpers')

test.skip('unbox', async t => {
const run = Run(t)
Expand Down

0 comments on commit e0f8e67

Please sign in to comment.