diff options
author | Marek Kotewicz <marek.kotewicz@gmail.com> | 2015-01-17 06:55:32 +0800 |
---|---|---|
committer | Marek Kotewicz <marek.kotewicz@gmail.com> | 2015-01-17 06:55:32 +0800 |
commit | 2d8383d3c8be80dab644fc67c47327872a87f50d (patch) | |
tree | 4897f12d778c422a3bc43f8a4b71496df4fb1e9c | |
parent | e94da808cb2a9f0493b42e5e572f6aed78de5ee3 (diff) | |
download | go-tangerine-2d8383d3c8be80dab644fc67c47327872a87f50d.tar.gz go-tangerine-2d8383d3c8be80dab644fc67c47327872a87f50d.tar.zst go-tangerine-2d8383d3c8be80dab644fc67c47327872a87f50d.zip |
removed unused functions
-rw-r--r-- | lib/abi.js | 9 |
1 files changed, 0 insertions, 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 |