mxbit
Version:
Bitcoin cash bike-shed
32 lines (25 loc) • 516 B
JavaScript
/*!
* layout.js - indexer layout for bcoin
* Copyright (c) 2018, the bcoin developers (MIT License).
* https://github.com/bcoin-org/bcoin
*/
;
const bdb = require('bdb');
/*
* Index Database Layout:
* To be extended by indexer implementations
* V -> db version
* O -> flags
* h[height] -> recent block hash
* R -> chain sync state
*/
const layout = {
V: bdb.key('V'),
O: bdb.key('O'),
h: bdb.key('h', ['uint32']),
R: bdb.key('R')
};
/*
* Expose
*/
module.exports = layout;