mirror of
https://github.com/fullstack-cash/bch-api.git
synced 2026-09-22 01:02:05 -07:00
23 lines
601 B
JavaScript
23 lines
601 B
JavaScript
/*
|
|
This library contains mocking data for running unit tests on the dsproof route.
|
|
*/
|
|
|
|
'use strict'
|
|
|
|
const mockGetDsProof = {
|
|
dspid: '6234fff2a9dbcaa50e2c50d74e1d725a2bed1757d7a05a2db7a82df659554397',
|
|
txid: 'ee0df780b58f6f24467605b2589c44c3a50fc849fb8f91b89669a4ae0d86bc7e',
|
|
outpoint: {
|
|
txid: '17ebef34f7e9a0692317dd6fbb43ffccff45b7d688a2a754dbccfc5e6d93ce3e',
|
|
vout: 1
|
|
},
|
|
path: ['ee0df780b58f6f24467605b2589c44c3a50fc849fb8f91b89669a4ae0d86bc7e'],
|
|
descendants: [
|
|
'ee0df780b58f6f24467605b2589c44c3a50fc849fb8f91b89669a4ae0d86bc7e'
|
|
]
|
|
}
|
|
|
|
module.exports = {
|
|
mockGetDsProof
|
|
}
|