we now support all services.

This commit is contained in:
Christopher Jeffrey 2016-06-03 21:34:21 -07:00
parent 055e5665e3
commit a6ca11611f
No known key found for this signature in database
GPG Key ID: 8962AB9DE6666BBD

View File

@ -68,12 +68,16 @@ exports.services = {
}; };
/** /**
* BCoin's services (NETWORK | WITNESS) * BCoin's services (we support everything).
* @const {Number} * @const {Number}
* @default * @default
*/ */
exports.LOCAL_SERVICES = exports.services.NETWORK | exports.services.WITNESS; exports.LOCAL_SERVICES = 0
| exports.services.NETWORK
| exports.services.GETUTXO
| exports.services.BLOOM
| exports.services.WITNESS;
/** /**
* Inv types. * Inv types.