Commit c4f07348 authored by Eric Jennings's avatar Eric Jennings
Browse files

Merge pull request #8 from noopkat/patch-1

silence getSignature for clean console
parents bdfd2eac 3b2f8074
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -131,8 +131,8 @@ stk500.prototype.verifySignature = function(signature, done) {

  this.getSignature(function(error, reportedSignature){

  	console.log(reportedSignature);
  	console.log(signature);
  	//console.log(reportedSignature);
  	//console.log(signature);
  	if(!bufferEqual(signature, reportedSignature)){
  		done(new Error("signature doesnt match. Found: " + reportedSignature.toString('hex'), error));
  	}else{