From 48e15b587a1ca53df60037d06b7068f9ea9a10d1 Mon Sep 17 00:00:00 2001
From: Daniel Cousens <github@dcousens.com>
Date: Fri, 9 May 2014 12:25:24 +1000
Subject: [PATCH] Address: remove redundant comments

---
 src/address.js | 4 ----
 1 file changed, 4 deletions(-)

diff --git a/src/address.js b/src/address.js
index 405cb20..7c7650d 100644
--- a/src/address.js
+++ b/src/address.js
@@ -44,12 +44,10 @@ Address.fromScriptPubKey = function(script, network) {
 
   var type = script.getOutType()
 
-  // Pay-to-pubKeyHash
   if (type === 'pubkeyhash') {
     return new Address(new Buffer(script.chunks[2]), network.pubKeyHash)
   }
 
-  // Pay-to-scriptHash
   else if (type === 'scripthash') {
     return new Address(new Buffer(script.chunks[1]), network.scriptHash)
   }
@@ -65,12 +63,10 @@ Address.prototype.toBase58Check = function () {
 Address.prototype.toScriptPubKey = function() {
   var scriptType = findScriptTypeByVersion(this.version)
 
-  // Pay-to-pubKeyHash
   if (scriptType === 'pubKeyHash') {
     return Script.createPubKeyHashScriptPubKey(this.hash)
   }
 
-  // Pay-to-scriptHash
   else if (scriptType === 'scriptHash') {
     return Script.createP2SHScriptPubKey(this.hash)
   }