mirror of
https://github.com/fullstack-cash/bch-api.git
synced 2026-09-22 01:02:05 -07:00
28 lines
499 B
JavaScript
28 lines
499 B
JavaScript
/*
|
|
This library contains mocking data for running unit tests on the address route.
|
|
*/
|
|
|
|
"use strict"
|
|
|
|
const mockGetInfo = {
|
|
version: 170200,
|
|
protocolversion: 70015,
|
|
walletversion: 160300,
|
|
balance: 0,
|
|
blocks: 1266726,
|
|
timeoffset: 0,
|
|
connections: 8,
|
|
proxy: "",
|
|
difficulty: 1,
|
|
testnet: true,
|
|
keypoololdest: 1536331195,
|
|
keypoolsize: 2000,
|
|
paytxfee: 0,
|
|
relayfee: 0.00001,
|
|
errors: "Warning: unknown new rules activated (versionbit 28)"
|
|
}
|
|
|
|
module.exports = {
|
|
mockGetInfo
|
|
}
|