@dashevo/dashcore-p2p
Version:
Interface to the dash P2P network for Dashcore
37 lines (31 loc) • 914 B
JavaScript
;
var Message = require('../message');
var inherits = require('util').inherits;
var dashcore = require('@dashevo/dashcore-lib');
var $ = dashcore.util.preconditions;
var _ = dashcore.deps._;
/**
* @param {Block=} arg - An instance of a Block
* @param {Object} options
* @param {Function} options.Block - A block constructor
* @extends Message
* @constructor
*/
function BlockMessage(arg, options) {
Message.call(this, options);
this.Block = options.Block;
this.command = 'block';
$.checkArgument(
_.isUndefined(arg) || arg instanceof this.Block,
'An instance of Block or undefined is expected'
);
this.block = arg;
}
inherits(BlockMessage, Message);
BlockMessage.prototype.setPayload = function(payload) {
this.block = this.Block.fromBuffer(payload);
};
BlockMessage.prototype.getPayload = function() {
return this.block.toBuffer();
};
module.exports = BlockMessage;