block: remove use of assert

This commit is contained in:
Daniel Cousens 2015-08-11 17:03:46 +10:00
parent 8f821f4768
commit 395c43ad74

View file

@ -1,4 +1,3 @@
var assert = require('assert')
var bufferutils = require('./bufferutils')
var crypto = require('./crypto')
@ -14,7 +13,7 @@ function Block () {
}
Block.fromBuffer = function (buffer) {
assert(buffer.length >= 80, 'Buffer too small (< 80 bytes)')
if (buffer.length < 80) throw new Error('Buffer too small (< 80 bytes)')
var offset = 0
function readSlice (n) {