aboutsummaryrefslogtreecommitdiffstats
path: root/lib/abi.js
diff options
context:
space:
mode:
authorMarek Kotewicz <marek.kotewicz@gmail.com>2015-01-16 23:46:14 +0800
committerMarek Kotewicz <marek.kotewicz@gmail.com>2015-01-16 23:46:14 +0800
commite94da808cb2a9f0493b42e5e572f6aed78de5ee3 (patch)
treeb39faefff3f7d981afaad79c0543992a113303d1 /lib/abi.js
parenta1c0bb68ddd7a032843d16ed083a951588281278 (diff)
downloaddexon-e94da808cb2a9f0493b42e5e572f6aed78de5ee3.tar
dexon-e94da808cb2a9f0493b42e5e572f6aed78de5ee3.tar.gz
dexon-e94da808cb2a9f0493b42e5e572f6aed78de5ee3.tar.bz2
dexon-e94da808cb2a9f0493b42e5e572f6aed78de5ee3.tar.lz
dexon-e94da808cb2a9f0493b42e5e572f6aed78de5ee3.tar.xz
dexon-e94da808cb2a9f0493b42e5e572f6aed78de5ee3.tar.zst
dexon-e94da808cb2a9f0493b42e5e572f6aed78de5ee3.zip
default padding set to 32, separated to one variable
Diffstat (limited to 'lib/abi.js')
-rw-r--r--lib/abi.js10
1 files changed, 6 insertions, 4 deletions
diff --git a/lib/abi.js b/lib/abi.js
index f94e97faf..5a01f43fd 100644
--- a/lib/abi.js
+++ b/lib/abi.js
@@ -30,6 +30,8 @@ var web3 = require('./web3'); // jshint ignore:line
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();
@@ -92,7 +94,7 @@ var setupInputTypes = function () {
/// If the value is floating point, round it down
/// @returns right-aligned byte representation of int
var formatInt = function (value) {
- var padding = 32 * 2;
+ var padding = ETH_PADDING * 2;
if (value instanceof BigNumber || typeof value === 'number') {
if (typeof value === 'number')
value = new BigNumber(value);
@@ -114,7 +116,7 @@ var setupInputTypes = function () {
/// Formats input value to byte representation of string
/// @returns left-algined byte representation of string
var formatString = function (value) {
- return web3.fromAscii(value, 32).substr(2);
+ return web3.fromAscii(value, ETH_PADDING).substr(2);
};
/// Formats input value to byte representation of bool
@@ -151,7 +153,7 @@ var toAbiInput = function (json, methodName, params) {
}
var method = json[index];
- var padding = 32 * 2;
+ var padding = ETH_PADDING * 2;
for (var i = 0; i < method.inputs.length; i++) {
var typeMatch = false;
@@ -240,7 +242,7 @@ var fromAbiOutput = function (json, methodName, output) {
var result = [];
var method = json[index];
- var padding = 32 * 2;
+ var padding = ETH_PADDING * 2;
for (var i = 0; i < method.outputs.length; i++) {
var typeMatch = false;
for (var j = 0; j < outputTypes.length && !typeMatch; j++) {