From 2d8383d3c8be80dab644fc67c47327872a87f50d Mon Sep 17 00:00:00 2001
From: Marek Kotewicz <marek.kotewicz@gmail.com>
Date: Fri, 16 Jan 2015 23:55:32 +0100
Subject: [PATCH] removed unused functions

---
 lib/abi.js | 9 ---------
 1 file changed, 9 deletions(-)

diff --git a/lib/abi.js b/lib/abi.js
index 5a01f43fd..3571472dc 100644
--- a/lib/abi.js
+++ b/lib/abi.js
@@ -32,15 +32,6 @@ BigNumber.config({ ROUNDING_MODE: BigNumber.ROUND_DOWN });
 
 var ETH_PADDING = 32;
 
-// TODO: make these be actually accurate instead of falling back onto JS's doubles.
-var hexToDec = function (hex) {
-    return parseInt(hex, 16).toString();
-};
-
-var decToHex = function (dec) {
-    return parseInt(dec).toString(16);
-};
-
 /// Finds first index of array element matching pattern
 /// @param array
 /// @param callback pattern
-- 
GitLab