mirror of
https://github.com/fullstack-cash/bch-api.git
synced 2026-09-22 17:22:04 -07:00
16 lines
224 B
JavaScript
16 lines
224 B
JavaScript
/*
|
|
This library contains mocking data for running unit tests on the bitcore route.
|
|
*/
|
|
|
|
"use strict"
|
|
|
|
const mockBalance = {
|
|
confirmed: 10000000,
|
|
unconfirmed: 0,
|
|
balance: 10000000
|
|
}
|
|
|
|
module.exports = {
|
|
mockBalance
|
|
}
|