fcoin
Version:
FLO bike-shed
32 lines (25 loc) • 404 B
JavaScript
/*!
* common.js - blockstore constants for bcoin
* Copyright (c) 2019, Braydon Fuller (MIT License).
* https://github.com/bcoin-org/bcoin
*/
;
/**
* @module blockstore/common
*/
/**
* Block data types.
* @enum {Number}
*/
exports.types = {
BLOCK: 1,
UNDO: 2
};
/**
* File prefixes for block data types.
* @enum {String}
*/
exports.prefixes = {
1: 'blk',
2: 'blu'
};