mirror of
https://github.com/fullstack-cash/bch-api.git
synced 2026-09-21 16:52:04 -07:00
31 lines
458 B
JavaScript
31 lines
458 B
JavaScript
/*
|
|
Mocking data for electrumx unit tests
|
|
*/
|
|
|
|
'use strict'
|
|
|
|
const utxos = [
|
|
{
|
|
height: 604392,
|
|
tx_hash: '7774e449c5a3065144cefbc4c0c21e6b69c987f095856778ef9f45ddd8ae1a41',
|
|
tx_pos: 0,
|
|
value: 1000
|
|
},
|
|
{
|
|
height: 630834,
|
|
tx_hash: '4fe60a51e0d8f5134bfd8e5f872d6e502d7f01b28a6afebb27f4438a4f638d53',
|
|
tx_pos: 0,
|
|
value: 6000
|
|
}
|
|
]
|
|
|
|
const balance = {
|
|
confirmed: 7000,
|
|
unconfirmed: 0
|
|
}
|
|
|
|
module.exports = {
|
|
utxos,
|
|
balance
|
|
}
|