mirror of
https://github.com/fullstack-cash/bch-api.git
synced 2026-09-22 17:22:04 -07:00
19 lines
249 B
JavaScript
19 lines
249 B
JavaScript
/*
|
|
Mocking data for electrumx unit tests
|
|
*/
|
|
|
|
'use strict'
|
|
|
|
const utxos = [
|
|
{
|
|
height: 604392,
|
|
tx_hash: '7774e449c5a3065144cefbc4c0c21e6b69c987f095856778ef9f45ddd8ae1a41',
|
|
tx_pos: 0,
|
|
value: 1000
|
|
}
|
|
]
|
|
|
|
module.exports = {
|
|
utxos
|
|
}
|