fix missing export
This commit is contained in:
+1
-1
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "xrpio",
|
"name": "xrpio",
|
||||||
"version": "0.1.2",
|
"version": "0.1.3",
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://gitea.nitowa.xyz/npm-packages/xrpio.git"
|
"url": "https://gitea.nitowa.xyz/npm-packages/xrpio.git"
|
||||||
|
|||||||
+4
-3
@@ -1,5 +1,6 @@
|
|||||||
export * from './xrpIO/ripple-binding'
|
//export * from './xrpIO/ripple-binding'
|
||||||
export * from './util/types'
|
export * from './util/types'
|
||||||
export * from './util/protocol.constants'
|
export * from './util/protocol.constants'
|
||||||
export * from 'ripple-lib'
|
//export * from 'ripple-lib'
|
||||||
export { RippleAPI } from 'ripple-lib'
|
//export { RippleAPI } from 'ripple-lib'
|
||||||
|
export * from './xrpIO/xrpl-binding'
|
||||||
+4
-3
@@ -89,12 +89,13 @@ describe('XRPIO', () => {
|
|||||||
it('treeRead XL', async function(){
|
it('treeRead XL', async function(){
|
||||||
// this.skip()
|
// this.skip()
|
||||||
this.timeout(450000)
|
this.timeout(450000)
|
||||||
txHash = await api.treeRead([txHash])
|
const data = await api.treeRead([txHash])
|
||||||
expect(txHash).to.exist
|
expect(data).to.exist
|
||||||
expect(txHash).to.be.equal(htmlTxt)
|
expect(data).to.be.equal(htmlTxt)
|
||||||
})
|
})
|
||||||
|
|
||||||
it('print open handles', function(){
|
it('print open handles', function(){
|
||||||
wtf.dump()
|
wtf.dump()
|
||||||
|
console.log(txHash)
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
Reference in New Issue
Block a user