67 lines
1.6 KiB
JavaScript
67 lines
1.6 KiB
JavaScript
/*!
|
|
* errors.js - error objects for bcoin
|
|
* Copyright (c) 2014-2015, Fedor Indutny (MIT License)
|
|
* Copyright (c) 2014-2017, Christopher Jeffrey (MIT License).
|
|
* https://github.com/bcoin-org/bcoin
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
/**
|
|
* @module protocol/errors
|
|
*/
|
|
|
|
const assert = require('assert');
|
|
const util = require('../utils/util');
|
|
|
|
/**
|
|
* An error thrown during verification. Can be either
|
|
* a mempool transaction validation error or a blockchain
|
|
* block verification error. Ultimately used to send
|
|
* `reject` packets to peers.
|
|
* @constructor
|
|
* @extends Error
|
|
* @param {Block|TX} msg
|
|
* @param {String} code - Reject packet code.
|
|
* @param {String} reason - Reject packet reason.
|
|
* @param {Number} score - Ban score increase
|
|
* (can be -1 for no reject packet).
|
|
* @param {Boolean} malleated
|
|
* @property {String} code
|
|
* @property {Buffer} hash
|
|
* @property {Number} height (will be the coinbase height if not present).
|
|
* @property {Number} score
|
|
* @property {String} message
|
|
* @property {Boolean} malleated
|
|
*/
|
|
|
|
function VerifyError(msg, code, reason, score, malleated) {
|
|
Error.call(this);
|
|
|
|
if (Error.captureStackTrace)
|
|
Error.captureStackTrace(this, VerifyError);
|
|
|
|
assert(typeof code === 'string');
|
|
assert(typeof reason === 'string');
|
|
assert(score >= 0);
|
|
|
|
this.type = 'VerifyError';
|
|
this.message = '';
|
|
this.code = code;
|
|
this.reason = reason;
|
|
this.score = score;
|
|
this.hash = msg.hash('hex');
|
|
this.malleated = malleated || false;
|
|
|
|
this.message = `Verification failure: ${reason}`
|
|
+ ` (code=${code} score=${score} hash=${msg.rhash()})`;
|
|
}
|
|
|
|
util.inherits(VerifyError, Error);
|
|
|
|
/*
|
|
* Expose
|
|
*/
|
|
|
|
exports.VerifyError = VerifyError;
|