Got first unit and integration tests for electrumx

This commit is contained in:
Chris Troutner
2020-04-07 10:49:05 -07:00
parent 708488d928
commit 8910bfd33b
5 changed files with 191 additions and 41 deletions
+18
View File
@@ -0,0 +1,18 @@
/*
Mocking data for electrumx unit tests
*/
'use strict'
const utxos = [
{
height: 604392,
tx_hash: '7774e449c5a3065144cefbc4c0c21e6b69c987f095856778ef9f45ddd8ae1a41',
tx_pos: 0,
value: 1000
}
]
module.exports = {
utxos
}