Files
bch-api/test/v3/mocks/electrumx-mock.js
T

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
}