fix(mintNFTGroupOpReturn()): Updating to use UTXOs from psf-slp-indexer

This commit is contained in:
Chris Troutner
2022-05-05 10:43:40 -07:00
parent f369411ccb
commit 59e92adf0b
2 changed files with 10 additions and 10 deletions
@@ -113,15 +113,15 @@ describe('#UTXO', () => {
assert.isAbove(result.slpUtxos.group.mintBatons.length, 0)
})
// it('should filter NFTs', async () => {
// const addr = 'bitcoincash:qq7vp2kvejsql898a2760kuq6xz00h0a5vs4h72ysz'
//
// const result = await bchjs.Utxo.get(addr)
// console.log(`result: ${JSON.stringify(result, null, 2)}`)
//
// // assert.isAbove(result.slpUtxos.group.tokens.length, 0)
// // assert.isAbove(result.slpUtxos.group.mintBatons.length, 0)
// })
it('should filter NFTs', async () => {
const addr = 'simpleledger:qq7vp2kvejsql898a2760kuq6xz00h0a5vuwu9lywu'
const result = await bchjs.Utxo.get(addr)
console.log(`result: ${JSON.stringify(result, null, 2)}`)
// assert.isAbove(result.slpUtxos.group.tokens.length, 0)
// assert.isAbove(result.slpUtxos.group.mintBatons.length, 0)
})
})
})