mirror of
https://github.com/fullstack-cash/bch-api.git
synced 2026-09-22 09:12:05 -07:00
22 lines
422 B
JavaScript
22 lines
422 B
JavaScript
/*
|
|
This library contains mocking data for running unit tests on the address route.
|
|
*/
|
|
|
|
'use strict'
|
|
|
|
const mockMiningInfo = {
|
|
blocks: 1270185,
|
|
currentblocksize: 0,
|
|
currentblocktx: 0,
|
|
difficulty: 1,
|
|
warnings:
|
|
"Warning: Unknown block versions being mined! It's possible unknown rules are in effect",
|
|
networkhashps: 517410290.9365583,
|
|
pooledtx: 5,
|
|
chain: 'test'
|
|
}
|
|
|
|
module.exports = {
|
|
mockMiningInfo
|
|
}
|